/*!**********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!../themes/historia-do-whisky.css ***!
  \**********************************************************************************/
#historia-whisky {
    .banner-desktop {
        width: 100%;
        height: auto;
    }

    .mobile-title {
        span {
            font-size: 1.2rem;
        }

        span:first-of-type {
            color: var(--azul);
            font-weight: 600;
        }
    }
}


/* principal da linha do tempo */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    column-gap: 35px;
    align-items: start;
    position: relative;
    margin-left: 40px;
}

/*Ano e Título */
.timeline-left {
    text-align: right;
    margin-top: 10px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 0px;
}

.timeline-left h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
}

/* bolinha */
.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.timeline-dot {
    width: 38px;
    height: 38px;
    background-color: #003c96;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1
}

.line-segment {
    width: 10px;
    background-color: #003c96;
}

.line-segment.stretch {
    flex-grow: 1;
}

.timeline-item:first-child .line-segment:not(.stretch) {
    visibility: hidden;
}

.timeline-right {
    background-color: #ffffff;
    padding: 20px 10px 49px 7px;
    border-radius: 8px;
}

.timeline-right p {
    margin: 0;
    line-height: 1.5;
}

.title-banner {
    background-size: cover;
    padding: 10rem 1rem;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
    background-position: center;
}

#title .title {
    font-size: 30px;
    color: var(--azul);
    text-transform: none;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0 0.5rem 0;
}

#title .subtitle {
    font-size: 30px;
    color: rgb(47 47 47);
    text-transform: none;
    font-weight: 350;
    text-align: center;
    margin: 12px 0px 4rem 0px;
}

#title p.subtitle {
    font-size: 17px;
    color: rgb(29, 27, 27);
    text-transform: none;
    font-weight: 375;
    text-align: center;
    max-width: 900px;
    margin: 25px auto 4rem auto;
}

.timeline-dot.bottle-dot {
    background-color: transparent;
    background-image: url(/dist/dff91022aa95072eca7e.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 80px;
    border-radius: 0;
    top: 0;
}

.timeline-item:last-child .line-segment.stretch {
    background: linear-gradient(to bottom, #003c96, transparent);
}

#historia-do-whisky-cards-container {
    padding: 4rem 1rem;
    background-color: #ffffff;
}

#historia-do-whisky-cards-container .cards-container {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;

    .slick-track {
        display: flex;
        gap: 40px;
        align-items: stretch;
    }

    .card {
        width: 400px;
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        flex-shrink: 0;
        height: 100%; /* <-- Add this line */

        .card-image {
            img {
                width: 100%;
                position: relative;
                z-index: 3;
            }
        }

        .card-content {
            background-color: var(--azul);
            color: #fff;
            padding-top: 30px;
            padding-bottom: 15px;
            padding-inline: 40px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            min-height: 12rem;
            margin-top: -15px;
            height: 100%;

            p {
                font-size: 1.2rem;
                font-weight: 300;
                margin: 0;
                flex-grow: 1;
            }
        }

        .card-title-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
            margin-bottom: 10px;

            h3 {
                display: flex;
                flex-direction: column;
                align-items: start;
                justify-content: center;
                margin: 0;
                font-size: 1.5rem;
                line-height: 1.2;
                font-weight: 400;
                color: #fff;

            }
        }

        .arrow-right {
            background-color: #fff;
            border-radius: 100px;
            padding: 2px;

            svg {
                height: 30px;
                width: auto;

                path {
                    fill: var(--azul);
                }
            }
        }
    }
}


@media (max-width: 1299px) {
    #historia-do-whisky-cards-container .cards-container {
        .card {
            .card-title-wrapper {
                h3 {
                    font-size: 1.2rem;
                }
            }

            .card-content {
                min-height: 12rem;
                p {
                    font-size: .9rem;
                }
            }
        }
    }
}
