/* Links Page (Bento Grid) */
.links-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.links-profile {
    text-align: center;
    margin-bottom: 2.5rem;
}

.links-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.links-profile h1 {
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.links-tagline {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.links-meta {
    font-size: 0.9rem;
    color: var(--rose-pink);
    font-weight: 600;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bento-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--charcoal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

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

.bento-card h2 {
    font-size: 1.15rem;
    margin: 0.25rem 0 0.25rem;
}

.bento-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.bento-icon {
    font-size: 1.8rem;
}

.bento-large,
.bento-wide {
    grid-column: span 2;
}

.bento-instagram {
    background: linear-gradient(135deg, var(--rose-pink), var(--sunset-orange), var(--golden-yellow));
    color: white;
    text-align: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
}

.bento-instagram p {
    color: rgba(255,255,255,0.9);
}

.bento-latest .bento-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rose-pink);
}

.bento-contact {
    background: var(--charcoal);
    color: white;
    text-align: center;
    align-items: center;
}

.bento-contact p {
    color: rgba(255,255,255,0.7);
}

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

    .bento-large,
    .bento-wide {
        grid-column: span 1;
    }
}

@media (min-width: 900px) {
    .links-page {
        max-width: 960px;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-large,
    .bento-wide {
        grid-column: span 3;
    }
}
