.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.interest-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.interest-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.interest-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.interest-card h3 {
    margin: 0.4rem 0;
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
}

.interest-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.3;
}

.image-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.image-row figure {
    flex: 1;
    max-width: 400px;
    margin: 0;
}

.image-row img {
    width: 100%;
    border-radius: 8px;
}

.image-row figcaption {
    font-size: 0.85em;
    color: #aaa;
    margin-top: 0.5em;
    text-align: center;
}