/* OAB News Layout Styles */
.oab-news-layout-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #0a1929; /* Dark blue background */
    position: relative;
    overflow: hidden;
}

.oab-news-layout-wrapper {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Left Section: Featured Post */
.oab-featured-section {
    flex: 1;
    max-width: 50%;
}

.oab-featured-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.oab-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.oab-featured-image:hover img {
    transform: scale(1.05);
}

.oab-featured-image a {
    display: block;
    width: 100%;
}

.oab-featured-content {
    color: #ffffff;
}

.oab-featured-meta {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oab-featured-date {
    font-weight: 400;
}

.oab-featured-separator {
    color: rgba(255, 255, 255, 0.6);
}

.oab-featured-category {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oab-featured-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.oab-featured-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.oab-featured-title a:hover {
    color: #64b5f6;
}

.oab-featured-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.oab-featured-link {
    margin-top: 30px;
}

.oab-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.oab-view-more:hover {
    color: #64b5f6;
    transform: translateX(5px);
}

.oab-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.oab-view-more:hover .oab-arrow {
    transform: translateX(3px);
}

/* Right Section: Post List */
.oab-posts-list-section {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.oab-post-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.oab-post-item:last-child {
    border-bottom: none;
}

.oab-post-item:hover {
    padding-left: 10px;
}

.oab-post-content {
    flex: 1;
}

.oab-post-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.oab-post-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.oab-post-title a:hover {
    color: #64b5f6;
}

.oab-post-category {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.oab-post-arrow {
    flex-shrink: 0;
    margin-left: 20px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.oab-post-item:hover .oab-post-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.oab-post-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    width: 32px;
    height: 32px;
}

.oab-post-arrow svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .oab-news-layout-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .oab-featured-section,
    .oab-posts-list-section {
        max-width: 100%;
    }
    
    .oab-featured-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .oab-news-layout-container {
        padding: 40px 15px;
    }
    
    .oab-featured-title {
        font-size: 24px;
    }
    
    .oab-post-title {
        font-size: 18px;
    }
    
    .oab-featured-excerpt {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .oab-news-layout-container {
        padding: 30px 10px;
    }
    
    .oab-featured-title {
        font-size: 20px;
    }
    
    .oab-post-title {
        font-size: 16px;
    }
    
    .oab-featured-meta {
        font-size: 12px;
    }
}


/* SHAHID */


.oab-news-layout-container {
    padding: 0px !important;
    background: none !important;
}

img.attachment-large.size-large.wp-post-image {
}

.oab-featured-image {
    max-height: 260px !important;
    margin-bottom: 24px !important;
}

.oab-featured-meta {
    margin-bottom: 24px !important;
    font-size: 16px !important;
}

h2.oab-featured-title {
    font-size: 28px !important;
    margin-bottom: 24px !important;
}

.oab-featured-excerpt {
    margin-bottom: 24px !important;
    font-size: 18px !important;
}

.oab-featured-link {
    margin-top: 0px !important;
}

a.oab-view-more {
    font-size: 14px !important;
}

h3.oab-post-title {
    font-size: 28px !important;
    margin-bottom: 24px !important;
}

.oab-post-category {
    font-size: 16px !important;
}

.oab-post-item {
    margin-bottom: 16px !important;
}

.oab-post-item {
    padding: 0px !important;
}

.oab-post-item {
    border: none !important;
}

.oab-posts-list-section {
    gap: 16px !important;
}

.oab-news-layout-wrapper {
    padding-top: 5px !important;
}

