/* Elegant Blog Layout styles */
.eb-blog-wrapper {
    display: flex;
    gap: 24px;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
    align-items: stretch;
}

.eb-blog-left {
    flex: 2;
}

.eb-blog-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eb-blog-big {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background: #000;
}

.eb-big-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.eb-big-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 36px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 60%);
    color: #fff;
    box-sizing: border-box;
}

.eb-meta {
    font-size: 13px;
    opacity: 0.9;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.eb-big-title {
    font-size: 35px!important;
    margin: 12px 0;
    line-height: 1.1;
    font-weight: 500;
    font-family:marcellus!important;
    color:#fafafa!important;
}

.eb-read-btn {
    background: #E7C83A;
    padding: 10px 18px;
    color: #662126;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}

.eb-read-btn:hover{
    color: #662126;
}

.eb-small-box {
    display: block;
 
    border-radius: 10px;
    overflow: hidden;
    
}

h4{
    margin: 0!important;
    font-family:marcellus!important;
    font-size:20px!important;
    color:#131313!important;
    font-weight:500!important;
}

.eb-small-date{
    font-size:16px!important;
    font-family:nunito;
}

.eb-small-img {
    width: 100%;
    height: 140px;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    display: block;
}

.eb-small-title {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 12px 6px;
    color: #111;
}

.eb-small-date {
    font-size: 13px;
    padding: 0 12px 16px;
    color: #666;
    display: block;
}

@media (max-width: 900px) {
    .eb-blog-wrapper {
        flex-direction: column;
    }
    .eb-big-img {
        height: 320px;
    }
}


/* Elegant Blog Layout updated styles */
.eb-blog-wrapper {
    display: flex;
    gap: 24px;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
    align-items: stretch;
}

.eb-blog-left {
    flex: 2;
}

.eb-blog-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Left Big Post */
.eb-blog-big {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.eb-big-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.eb-big-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 36px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 15%) 60%);
    color: #fff;
    box-sizing: border-box;
}

.eb-meta {
    font-size: 12px;
    opacity: 0.9;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.eb-big-title {
    font-size: 28px;
    margin: 0 0 12px;
    line-height: 1.2;
    font-weight: 500;
}

.eb-big-title a{
    color:#fafafa !important;
}

.eb-big-title a:hover{
    color:#fafafa !important;
}

a:hover {
    color: #652125!important;
}

.eb-read-btn {
    background: #E7C83A;
    padding: 8px 16px;
    color: #662126;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* Right Small Posts */
.eb-small-box {
    display: block;

    border-radius: 10px;
    overflow: hidden;
   
    transition: transform 0.3s;
}

.eb-small-box:hover {
    transform: translateY(-4px);
}

.eb-small-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
}

.eb-small-title {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 12px 4px;
    color: #111;
}

.eb-small-date {
    font-size: 12px;
    padding: 0 12px 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .eb-blog-wrapper {
        flex-direction: column;
    }
    .eb-big-img {
        height: 320px;
    }
    .eb-small-img {
        height: 140px;
    }
}
