/* =========================================================
   AQUAVIT CATALOG — PRODUCER TAXONOMY
   Desktop + Tablet + Mobile
   ========================================================= */


/* ---------------------------------------------------------
   PAGE
   --------------------------------------------------------- */

.aqv-producer-page {
    width: 100%;
    margin: 0;
    padding: 0;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: #111;
}


/* Shared content width */

.aqv-producer-container {
    width: min(1200px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}


/* ---------------------------------------------------------
   PRODUCER HERO
   --------------------------------------------------------- */

.aqv-producer-hero {
    padding-top: 72px;
    padding-bottom: 56px;
}


.aqv-producer-title {
    max-width: 900px;

    margin: 0 0 28px;

    font-family: Cardo, Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.aqv-producer-description {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.6;
}

.aqv-producer-description p {
    margin: 0 0 14px;
}

.aqv-producer-description p:last-child {
    margin-bottom: 0;
}

/* ---------------------------------------------------------
   AQUAVITS SECTION
   --------------------------------------------------------- */

.aqv-producer-aquavits {
    padding-top: 48px;
    padding-bottom: 80px;

    background: #f6f6f4;
}


.aqv-producer-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 32px;
}


.aqv-producer-section-title {
    margin: 0;

    font-family: Cardo, Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.15;
}

.aqv-producer-location {
    margin: -6px 0 28px;

    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    color: #555;
}

/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.aqv-producer-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/*
 * Your existing aqv card already has most of its own styling.
 * These rules only help it behave inside the producer grid.
 */

.aqv-producer-grid .aq-card,
.aqv-producer-grid > * {
    min-width: 0;
    width: 100%;
    max-width: none;
}


/* ---------------------------------------------------------
   PAGINATION
   --------------------------------------------------------- */

.aqv-producer-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    margin-top: 48px;
}


.aqv-producer-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 40px;

    padding: 0 12px;

    border: 1px solid #d7d7d2;
    border-radius: 4px;

    color: #111;
    text-decoration: none;
}


.aqv-producer-pagination .page-numbers.current {
    background: #111;
    border-color: #111;
    color: #fff;
}


.aqv-producer-pagination a.page-numbers:hover {
    background: #eee;
}


/* ---------------------------------------------------------
   EMPTY STATE
   --------------------------------------------------------- */

.aqv-producer-empty {
    padding: 32px 0;
    color: #666;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .aqv-producer-container {
        width: min(100% - 40px, 960px);
    }


    .aqv-producer-hero {
        padding-top: 56px;
        padding-bottom: 44px;
    }


    .aqv-producer-title {
        font-size: clamp(38px, 6vw, 52px);
    }

	.aqv-producer-description {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.6;
}

.aqv-producer-description p {
    margin: 0 0 12px;
}

.aqv-producer-description p:last-child {
    margin-bottom: 0;
}


    .aqv-producer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .aqv-producer-container {
        width: calc(100% - 32px);
    }


    .aqv-producer-hero {
        padding-top: 40px;
        padding-bottom: 36px;
    }


    .aqv-producer-title {
        margin-bottom: 22px;

        font-size: 38px;
        line-height: 1.08;
    }


    .aqv-producer-description {
        font-size: 16px;
        line-height: 1.65;
    }


    .aqv-producer-aquavits {
        padding-top: 36px;
        padding-bottom: 56px;
    }


    .aqv-producer-section-header {
        display: block;
        margin-bottom: 24px;
    }


    .aqv-producer-section-title {
        font-size: 30px;
    }


    .aqv-producer-count {
        margin-top: 8px;
    }


    .aqv-producer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

	.aqv-producer-location {
        margin-top: -8px;
        margin-bottom: 22px;
        font-size: 15px;
    }


}