/* Carousel Wrapper default styling rules */
.pcc-d3490044-wrapper {
    position: relative;
    width: 100%;
}

/* Track / Scroll Area */
.pcc-d3490044-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* Hide scrollbar */
.pcc-d3490044-track::-webkit-scrollbar {
    display: none;
}
.pcc-d3490044-track {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Card Container */
.pcc-d3490044-card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    height: auto;
}

/* Image */
.pcc-d3490044-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Flags Row - Center image */
.pcc-d3490044-flags {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.pcc-d3490044-flags img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Title */
.pcc-d3490044-title {
    margin: 0;
}

/* Description */
.pcc-d3490044-description {
    line-height: 1.5;
    margin: 0;
}

/* Divider */
.pcc-d3490044-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

/* Ideal For: Always 2 blocks on separate lines, centered, zero base visual overrides */
.pcc-d3490044-ideal {
    display: block;
    width: 100%;
}
.pcc-d3490044-ideal-label,
.pcc-d3490044-ideal-value {
    display: block;
    text-align: center;
}

/* Meta */
.pcc-d3490044-meta {
    display: block;
}

/* Buttons Block pushed to bottom */
.pcc-d3490044-buttons {
    margin-top: auto !important;
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

/* Universal Button Styling */
.pcc-d3490044-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
    box-sizing: border-box;
}

/* Custom SVG icon size inside button */
.pcc-d3490044-btn-icon-1,
.pcc-d3490044-btn-icon-2 {
    display: inline-block;
    vertical-align: middle;
    width: auto;
}

/* Nav Arrows - Circular background, centered glyph, customizable background & size */
.pcc-d3490044-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #F26522;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s, border-radius 0.2s, opacity 0.2s;
    outline: none;
}
.pcc-d3490044-arrow img,
.pcc-d3490044-arrow svg {
    width: 16px;
    height: 16px;
    display: block;
    margin: 0 auto;
}
.pcc-d3490044-arrow:hover {
    opacity: 0.95;
}
.pcc-d3490044-arrow.pcc-d3490044-arrow-prev {
    left: -22px;
}
.pcc-d3490044-arrow.pcc-d3490044-arrow-next {
    right: -22px;
}
.pcc-d3490044-arrow:disabled,
.pcc-d3490044-arrow[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive visibility controls from prefix-class */
.pcc-arrows-show-no- .pcc-d3490044-arrow {
    display: none !important;
}
@media (min-width: 1025px) {
    .pcc-arrows-show-desktop-no- .pcc-d3490044-arrow {
        display: none !important;
    }
}
@media (max-width: 1024px) and (min-width: 768px) {
    .pcc-arrows-show-tablet-no- .pcc-d3490044-arrow {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .pcc-arrows-show-mobile-no- .pcc-d3490044-arrow {
        display: none !important;
    }
}
