/* Media Coverage Style Achievements Section */
.media-coverage-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e8ecf4;
}

.media-coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #5838fc;
}

.media-coverage-content {
    display: flex;
    align-items: center;
    min-height: 200px;
}

.media-image {
    flex: 0 0 300px;
    height: 300px;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.media-coverage-card:hover .media-image img {
    transform: scale(1.05);
}

.media-text {
    flex: 1;
    padding: 30px;
}

.media-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
}

.media-title .highlight {
    color: #ff6b35;
    font-weight: 800;
}

.media-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.media-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #94a3b8;
}

.media-badge {
    background: linear-gradient(135deg, #5838fc, #ff6b35);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.achievements-header {
    text-align: center;
    margin-bottom: 60px;
}

.achievements-header .sub-title {
    color: #ff6b35;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.achievements-header .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.achievements-header .description {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .media-coverage-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .media-image {
        flex: none;
        width: 100%;
        height: 100%;
    }
    
    .media-text {
        padding: 20px;
    }
    
    .media-title {
        font-size: 18px;
    }
    
    .achievements-header .main-title {
        font-size: 32px;
    }
}

/* Animation */
.media-coverage-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.media-coverage-card:nth-child(1) { animation-delay: 0.1s; }
.media-coverage-card:nth-child(2) { animation-delay: 0.2s; }
.media-coverage-card:nth-child(3) { animation-delay: 0.3s; }
.media-coverage-card:nth-child(4) { animation-delay: 0.4s; }
.media-coverage-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
