/* Styles for jacana_expos */

.jacana-expos-section {
    background: var(--sand, #f5f1e8);
}

.jacana-expos-header {
    text-align: center;
    margin-bottom: 44px;
}

.jacana-expos-header h2 {
    margin-bottom: 14px;
}

.jacana-expos-intro {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(45, 36, 22, 0.72);
    line-height: 1.65;
}

/* 5-photo masonry-inspired grid: 3 cols top, 2 cols bottom */
.jacana-expos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

/* Items 4 and 5 span wider to fill 2-col bottom row */
.jacana-expo-item:nth-child(4),
.jacana-expo-item:nth-child(5) {
    grid-column: span 1;
}

/* When exactly 5 items, centre the bottom 2 */
.jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) {
    grid-template-columns: repeat(6, 1fr);
}
.jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) .jacana-expo-item:nth-child(1) { grid-column: 1 / 3; }
.jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) .jacana-expo-item:nth-child(2) { grid-column: 3 / 5; }
.jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) .jacana-expo-item:nth-child(3) { grid-column: 5 / 7; }
.jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) .jacana-expo-item:nth-child(4) { grid-column: 2 / 4; }
.jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) .jacana-expo-item:nth-child(5) { grid-column: 4 / 6; }

.jacana-expo-item {
    margin: 0;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(45, 36, 22, 0.08);
}

.jacana-expo-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ede8df;
}

.jacana-expo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.jacana-expo-item:hover .jacana-expo-img-wrap img {
    transform: scale(1.04);
}

.jacana-expo-placeholder {
    background: linear-gradient(135deg, #e4ddd2, #cec6b8);
}

.jacana-expo-caption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px 14px;
}

.jacana-expo-caption-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--espresso, #2d2416);
    line-height: 1.3;
}

.jacana-expo-caption-loc {
    font-size: 12px;
    color: var(--clay, #7a5c44);
    letter-spacing: 0.04em;
}

@media (max-width: 860px) {
    .jacana-expos-grid,
    .jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) {
        grid-template-columns: repeat(2, 1fr);
    }

    .jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) .jacana-expo-item {
        grid-column: auto;
    }
}

@media (max-width: 540px) {
    .jacana-expos-grid,
    .jacana-expos-grid:has(.jacana-expo-item:nth-child(5):last-child) {
        grid-template-columns: 1fr;
    }
}
