  
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    padding-left: 25px;
    opacity: 0;
    transform: translateX(-20px);
    animation: textAnimation 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0; bottom: 0; width: 4px; height: 0;
    background-color: var(--primary-color);
    animation: borderAnimation 1.2s 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes textAnimation { to { opacity: 1; transform: translateX(0); } }
@keyframes borderAnimation { to { height: 100%; } }

/* Media Card Styles */
.media-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.media-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); }

.media-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.media-card-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.media-card-title { font-size: 1.3rem; font-weight: 600; color: var(--secondary-red); margin-bottom: 0.75rem; }
.media-card-text { color: var(--secondary-red); margin-bottom: 1rem; flex-grow: 1; }
.media-card-link { color: var(--primary-red); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; }

.section-divider {
    margin: 4rem 0;
    position: relative;
}
.section-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(120,0,0,0.3) 50%, transparent 100%);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-card { animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
.animate-card:nth-child(1) { animation-delay: 0.1s; }
.animate-card:nth-child(2) { animation-delay: 0.2s; }
.animate-card:nth-child(3) { animation-delay: 0.3s; }

@media (max-width: 768px) {
    .media-hero h1 { font-size: 2.5rem; }
    .media-card-img { height: 200px; }
}
