/* ═══════════════════════════════════════════════════════
   INTERESTS PAGE STYLESHEET
   Categories Grid & Framing
   ═══════════════════════════════════════════════════════ */

.description {
    font-family: 'Orwell', sans-serif;
    font-size: 1.5rem;
    color: #fafafa;
    font-style: italic;
    margin-top: 25px;
    text-align: center;
    margin-bottom: 5px;
}

.interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.interest-block {
    background-color: rgba(20, 0, 20, 0.6);
    border: 2px groove #630063;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s ease;
}

.interest-block:hover {
    border-color: red;
}

.interest-block:hover h3 {
    color: red;
}

.interest-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border: 20px solid transparent;
    border-image: url('../images/decorative/frame.png') 15% round;
    box-sizing: border-box;
}

.interest-block h3 {
    font-family: 'Elementary_Gothic_Scaled', serif;
    color: #9e9e9e;
    margin: 15px 0 5px 0;
    font-size: 2em;
    transition: color 0.3s ease;
}

.interest-block p {
    font-size: 1.2em;
    margin: 0;
}

@media (max-width: 768px) {
    .interests-grid {
        grid-template-columns: 1fr;
    }
}
