/**
 * Get Inspired — Instagram Feed Widget
 * Velour Pro Addons
 *
 */

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.vnpa-get-inspired {
    padding: 48px 0;
    background: #ffffff;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired {
        padding: 80px 0;
    }
}

/* ============================================================
   CONTAINER
   ============================================================ */
.vnpa-get-inspired__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired__container {
        padding: 0 32px;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.vnpa-get-inspired__header {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired__header {
        margin-bottom: 32px;
    }
}

/* Handle — @username */
.vnpa-get-inspired__handle {
    font-family: 'Inter', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    color: #0072FF;
    margin-bottom: 8px;
    display: block;
}

/* Title */
.vnpa-get-inspired__title {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired__title {
        font-size: 36px;
    }
}

/* Subtitle */
.vnpa-get-inspired__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B7280;
    margin-top: 8px;
    line-height: 1.5;
}

/* ============================================================
   GRID
   ============================================================ */
.vnpa-get-inspired__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}

/* ============================================================
   GRID ITEM (Instagram Post)
   ============================================================ */
.vnpa-get-inspired__item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    background: #F3F4F6;
    display: block;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired__item {
        border-radius: 16px;
    }
}

/* Image */
.vnpa-get-inspired__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Zoom on hover (only when enabled) */
.vnpa-get-inspired__item--zoom:hover img {
    transform: scale(1.06);
}

/* Hover Overlay */
.vnpa-get-inspired__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
    pointer-events: none;
}

.vnpa-get-inspired__item:hover .vnpa-get-inspired__overlay {
    background: rgba(17, 24, 39, 0.4);
}

/* Heart Icon */
.vnpa-get-inspired__heart {
    opacity: 0;
    transition: opacity 0.35s ease;
    color: #ffffff;
    width: 20px;
    height: 20px;
}

.vnpa-get-inspired__item:hover .vnpa-get-inspired__heart {
    opacity: 1;
}

/* ============================================================
   VISIBILITY — Hide items beyond 4 on mobile when 6 items
   ============================================================ */
.vnpa-get-inspired__item--desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .vnpa-get-inspired__item--desktop-only {
        display: block;
    }
}
