.nb-05c8e84c-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 767px) {
    .nb-05c8e84c-container {
        grid-template-columns: 1fr;
    }
}

.nb-05c8e84c-featured {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nb-05c8e84c-featured-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.nb-05c8e84c-featured-content {
    padding-top: 15px;
    flex-grow: 1;
}

.nb-05c8e84c-featured-date {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.nb-05c8e84c-featured-title, .nb-05c8e84c-featured-title a {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.2;
    color: inherit;
    text-decoration: none;
}

.nb-05c8e84c-featured-excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Side Section */
.nb-05c8e84c-side-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.nb-05c8e84c-side-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.nb-05c8e84c-side-item {
    display: none; /* hidden by default, JS will show them */
    grid-template-columns: minmax(100px, 1fr) 1.5fr;
    gap: 15px;
    align-items: stretch;
}

/* Initially show first 3 items before JS loads */
.nb-05c8e84c-side-item:nth-child(1),
.nb-05c8e84c-side-item:nth-child(2),
.nb-05c8e84c-side-item:nth-child(3) {
    display: grid;
}

@media (max-width: 767px) {
    .nb-05c8e84c-side-item {
        grid-template-columns: 1fr;
    }
}

.nb-05c8e84c-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
}

.nb-05c8e84c-side-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
}

.nb-05c8e84c-side-date {
    font-size: 13px;
    margin-bottom: 5px;
    color: #333;
}

.nb-05c8e84c-side-title, .nb-05c8e84c-side-title a {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
    color: inherit;
    text-decoration: none;
}

/* Pagination UI matching the screenshot */
.nb-05c8e84c-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: #fff;
    align-self: flex-start;
}

.nb-05c8e84c-page-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.nb-05c8e84c-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #142440; /* Changed from dark blue/purple to requested blue */
    color: #142440; /* Changed from dark blue/purple to requested blue */
    font-size: 12px;
}

.nb-05c8e84c-nav-buttons {
    display: flex;
    gap: 10px;
}

.nb-05c8e84c-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f59e0b; /* orange */
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s;
}

.nb-05c8e84c-btn:hover:not(:disabled),
.nb-05c8e84c-btn:active:not(:disabled),
.nb-05c8e84c-btn.active {
    background-color: #142440;
    color: #ffffff;
}

.nb-05c8e84c-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}