/* =========================================================
   GLAD ALICE - BUNDT CAKES
   ========================================================= */

.bundt-intro {
    margin: 10px auto 18px;
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
}

.bundt-size-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;

    max-width: 1050px;
    margin: 0 auto;
}

.bundt-size-card {
    overflow: hidden;

    border: 4px solid #765044;
    border-radius: 14px;

    background: var(--innacup-cream);

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.bundt-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.bundt-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.bundt-card-copy {
    padding: 12px 12px 14px;
    text-align: center;
}

.bundt-card-copy h3 {
    margin: 0;

    font-family: "Oswald", Arial, sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;

    text-transform: uppercase;

    color: #765044;
}

.bundt-price {
    margin: 6px 0 0;

    font-size: 18px;
    font-weight: 800;

    color: #d94463;
}

.bundt-flavors {
    max-width: 900px;

    margin: 20px auto 0;
    padding: 14px 5%;

    border: 2px solid rgba(118, 80, 68, 0.35);
    border-radius: 12px;

    background: #fff3f5;

    text-align: center;
}

.bundt-flavors h3 {
    margin: 0 0 7px;

    font-family: "Patrick Hand", cursive;
    font-size: 23px;
    line-height: 1;

    color: #e65f7a;
}

.bundt-flavors p {
    margin: 0;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.bundt-flavors span {
    padding: 0 4px;
    color: #d94463;
}

@media (max-width: 850px) {

    .bundt-size-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .bundt-image {
        height: 280px;
    }
}

@media (max-width: 700px) {

    .bundt-image {
        height: 225px;
    }

    .bundt-flavors {
        padding: 14px 6%;
    }
}
