/* Container section background is dark blue as shown in image_bc1ebf.png */
.localization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 40px 20px;
}

/* Card Styling */
.localization-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* Header layout for Flag + Country */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.compliance-box .card-header .country-flag img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.compliance-box .card-header .country-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

/* Title & Lists styling */
.card-main-title {
    font-size: 24px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #0d1b2a;
}



/* Read More Button styling */
.card-footer {
    margin-top: auto;
    /* Pushes button to bottom uniformly */
}

.read-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1px solid #008060;
    border-radius: 6px;
    color: #008060;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #008060;
    color: #fff;
}


/* Container Background mimicking the layout's deep blue theme accent */
.localization-single-wrapper {
    background-color: #0b2545;
    /* Dark blue background matching the header section */
    min-height: 80vh;
    padding: 60px 20px;
    color: #ffffff;
}

.localization-single-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Header Styling */
.localization-single-header {
    text-align: center;
    margin-bottom: 40px;
}

.flag-and-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.single-country-flag img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.single-country-name {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.single-sub-heading {
    font-size: 1.2rem;
    color: #8da9c4;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Content Card White Box styling */
.localization-single-content .content-card {
    background: #ffffff;
    color: #1d2d44;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.localization-single-content .section-title {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 25px;
    color: #0b2545;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 15px;
}

/* Styling internal content tags (lists automatically get green checkmarks) */
.entry-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.entry-content li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

.entry-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    background: #00a86b;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Back Button configuration */
.single-footer-actions {
    margin-top: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.back-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #008060;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #008060;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #008060;
    color: #fff;
}

.localization-box {
    padding-top: 60px;
    padding-bottom: 60px;
}

.localization-box .top-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 40px;
    position: relative;
    left: -50px
}

.localization-box .top-head h2 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1.3;
    display: block;
    color: #212121
}

.localization-box .top-head .swipper-button {
    display: flex;
    align-items: center
}

.localization-box .top-head .swipper-button .prev {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-image: url(../img/arrow-white-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s
}

.localization-box .top-head .swipper-button .next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #212121;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 18px;
    cursor: pointer;
    background-image: url(../img/arrow-white-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.4s
}

.localization-box .top-head .swipper-button .next:hover,
.localization-box .top-head .swipper-button .prev:hover {
    opacity: .65
}

.card-footer .read-more-btn {
    border: 1px solid #1ac96f;
    color: #1ac96f;
}

.card-description .wp-block-read-more .screen-reader-text {
    display: none;
}

.card-description .wp-block-read-more {
    border: 1px solid #1ac96f;
    color: #1ac96f;
    background: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
}

@media (min-width: 1024px) {  .swiper {  padding-right: var(--localization-box-left,4rem) !important;  }}
