/* ================================
   LATEST ISSUE - HERO STYLE
   ================================ */

/* Hero Section */
.hero-section-issue {
    position: relative;
    min-height: 600px;
    height: 85vh;
    max-height: 800px;
    background: linear-gradient(135deg, #1f4c6b 0%, #1271d1 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: blur(8px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(31, 76, 107, 0.85) 0%, rgba(18, 113, 209, 0.9) 100%);
}

.hero-content-issue {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-cover-issue {
    flex-shrink: 0;
    width: 380px;
}

.magazine-cover-img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.hero-info-issue {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-info-issue h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    max-width: 600px;
}

.hero-article-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.hero-article-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-article-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.hero-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-article-info {
    flex: 1;
}

.hero-article-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-article-title a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.hero-article-title a:hover {
    opacity: 0.8;
}

.hero-article-date {
    margin: 4px 0 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-light {
    background: white;
    color: #1271d1;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: #1271d1;
    color: white;
}

.btn-primary:hover {
    background: #0d5cb5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 113, 209, 0.3);
}

/* Content Wrapper */
.content-wrapper-issue {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Digital Archive CTA */
.digital-archive-section {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.archive-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/archive-digital-wcp.jpg');
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.digital-archive-section:hover .archive-background {
    transform: scale(1.1);
}

.archive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(31, 76, 107, 0.8) 0%, rgba(18, 113, 209, 0.85) 100%);
}

.archive-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.archive-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.archive-content p {
    font-size: 1rem;
    margin-bottom: 28px;
    max-width: 600px;
    opacity: 0.95;
}

.btn-archive {
    background: white;
    color: #1271d1;
    padding: 14px 36px;
    font-size: 0.9rem;
}

.btn-archive:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Subscribe CTA */
.subscribe-section-issue {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.subscribe-section-issue h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f4c6b;
    margin-bottom: 12px;
}

.subscribe-section-issue p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* No Issue Message */
.no-latest-issue {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.no-latest-issue h2 {
    color: #1f4c6b;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.no-latest-issue p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content-issue {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-cover-issue {
        width: 320px;
    }

    .hero-info-issue h1 {
        font-size: 2rem;
    }

    .hero-description,
    .hero-articles-list {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section-issue {
        height: auto;
        min-height: 500px;
    }

    .hero-cover-issue {
        width: 280px;
    }

    .hero-info-issue h1 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .content-wrapper-issue {
        padding: 40px 20px;
    }

    .hero-article-thumb {
        width: 50px;
        height: 50px;
    }

    .hero-article-title {
        font-size: 0.85rem;
    }

    .digital-archive-section {
        height: 300px;
    }

    .archive-content h2 {
        font-size: 1.5rem;
    }

    .archive-content p {
        font-size: 0.9rem;
        padding: 0 20px;
    }
}
