.plots-s {
    background-color: rgb(240, 243, 252) !important;
}
.plots-s .swiper {
    /* padding: 0 64px; */
    overflow: visible;
}
.plots-s .swiper > .swiper-button-prev {
    transform: rotate(180deg);
    left: -64px;
}
.plots-s .swiper > .swiper-button-next {
    right: -64px;
}
.swiper-pagination-bullet-active {
    background-color: #472e88;
}
.plots-s .swiper > .swiper-wrapper > .swiper-slide-active {
    transform: scale(1.1);
    box-shadow: 0 0 50px 0 #472e8850;
}
.plots-s .swiper > .swiper-wrapper > .swiper-slide {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
}
.plots-s .swiper > .swiper-wrapper > .swiper-slide-visible {
    opacity: 1;
}

.plot-card {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p {
        padding: 0;
        margin: 0;
    }
}

.plot-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.plot-card > .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 12px;
    background-color: #472e88;
}
.plot-card > .header > .image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    background-color: white;
}
.plot-card > .header > .image-wrapper > img {
    height: 75px;
}
.plot-card > .header > h4 {
    color: white;
}

.plot-card > .footer {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 12px 24px;
    gap: 12px;
    background-color: white;
}

.plot-card > .footer button {
    border: 1px solid #472e88;
    outline: none;
    background-color: white;
    padding: 12px;
    border-radius: 4px;
    color: #472e88;
    cursor: pointer;
    font-size: 1rem;
}
.plot-card > .footer p {
    font-weight: normal;
    font-size: 0.75rem;
}