.content-blocks-container {
    padding: 1rem;
    max-width: 1320px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.content-block {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.content-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.block-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 2px solid #f8f9fa;
    position: relative;
}

.block-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.topic-day .block-icon {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.weekly-roundup .block-icon {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

.monthly-magazine .block-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
}

.news-analysis .block-icon {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
}

.block-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.block-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.block-content {
    padding: 0 1.5rem 1.5rem;
}

.block-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.block-description {
    color: #495057;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.block-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: #44528e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.weekly-roundup .tag {
    background: #28a745;
}

.monthly-magazine .tag {
    background: #17a2b8;
}

.news-analysis .tag {
    background: #dc3545;
}

.block-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: #44528e;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.block-cta:hover {
    background: #44528e;
    color: #fff;
    text-decoration: none;
}

.block-cta i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.block-cta:hover i {
    transform: translateX(3px);
}

.weekly-roundup .block-cta {
    background: #28a745;
}

.weekly-roundup .block-cta:hover {
    background: #1e7e34;
}

.monthly-magazine .block-cta {
    background: #17a2b8;
}

.monthly-magazine .block-cta:hover {
    background: #117a8b;
}

.news-analysis .block-cta {
    background: #dc3545;
}

.news-analysis .block-cta:hover {
    background: #bd2130;
}

.video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stats-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #212529;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #ffc107;
    color: #212529;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-left: 1rem;
}

.pdf-download:hover {
    background: #e0a800;
    color: #212529;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-blocks-container {
        padding: 0.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .block-header {
        padding: 1rem 1rem 0.75rem;
    }

    .block-content {
        padding: 0 1rem 1rem;
    }

    .block-title {
        font-size: 1.1rem;
    }

    .block-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .pdf-download {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .block-tags {
        flex-direction: column;
        gap: 0.3rem;
    }

    .tag {
        align-self: flex-start;
    }

    .block-cta {
        width: 100%;
        justify-content: center;
    }
    .block-title {
        font-size: 0.75rem;
    }
}

.action-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.action-links a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.archive-link {
    background: #f8f9fa;
    color: #44528e;
    border: 1px solid #dee2e6;
}

.archive-link:hover {
    background: #e9ecef;
    color: #44528e;
}

.archive-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.block-cta {
    background: #44528e;
    color: #fff;
}

.block-cta:hover {
    background: #374376;
    color: #fff;
}

.block-cta i {
    margin-left: 0.5rem;
}

@media (max-width: 480px) {
    .action-links {
        flex-direction: column;
    }
}
