/* ---------- NYT Hero (RTL) ---------- */
.nyt-hero {
    background: #fff;
    padding: 25px 0 40px;
    direction: rtl;
    text-align: right;
}

.nyt-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    padding: 0 20px;
}

/* Lead Story */
.nyt-hero-lead {
    border-left: 1px solid #e2e2e2;
    padding-left: 32px;
}

.nyt-hero-lead img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    margin-bottom: 16px;
}

.nyt-kicker {
    font-size: 14px;
    font-weight: 700;
    color: #0f88f1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nyt-headline {
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    margin: 8px 0 12px;
}

.nyt-headline a {
    color: #000;
    text-decoration: none;
}

.nyt-headline a:hover {
    color: #0f88f1;
}

.nyt-summary {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 12px;
	text-align: justify;
}

.nyt-timestamp {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Right Column */
.nyt-hero-opinion {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.nyt-opinion-header,
.nyt-trending-header {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nyt-opinion-item {
    margin-bottom: 20px;
}

.nyt-opinion-text h4 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 6px;
}

.nyt-opinion-text h4 a {
    color: #000;
    text-decoration: none;
}

.nyt-opinion-text h4 a:hover {
    color: #0f88f1;
}

.nyt-author {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Trending List */
.nyt-trending-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nyt-trending-list li {
    margin-bottom: 12px;
    padding-right: 28px;
    position: relative;
}

.nyt-rank {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ccc;
    line-height: 1;
}

.nyt-title {
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    text-decoration: none;
}

.nyt-trending-list a {
    text-decoration: none;
}

.nyt-trending-list a:hover .nyt-title {
    color: #0f88f1;
}

/* Responsive */
@media (max-width: 1024px) {
    .nyt-hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
	}
    
    .nyt-hero-lead {
        border-left: none;
        padding-left: 0;
	}
}

@media (max-width: 768px) {
    .nyt-headline {
        font-size: 32px;
	}
    
    .nyt-summary {
        font-size: 18px;
	}
    
    .nyt-hero-lead img {
        height: 300px;
	}
}