/* Interests Grid Section */
.section-title {
    text-align: center;
    margin: 4rem auto 2rem;
    font-size: 2rem;
    color: #1a1a2e;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #e94560;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

/* Video Showcase Area */
.media-showcase {
    background-color: #1a1a2e;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.media-container {
    max-width: 800px;
    margin: 2rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: #000;
}

video {
    width: 100%;
    display: block;
}

/* Removes default link decorations from cards */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
