/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-blue: #005691;
    --dark-blue: #023B62;
    --accent-yellow: #facf39;
    --text-color: #333333;
    --bg-light: #f4f8fb;
    --white: #ffffff;
    --light-purple: #f5f4f9;
    --font-heading: 'Onest', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

/* Các lớp tiện ích (Utility classes) */
.text-white {
    color: var(--white) !important;
}

.text-yellow {
    color: var(--accent-yellow) !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.text-dark {
    color: var(--text-color) !important;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-blue);
    font-weight: 800;
}

.section-title {
    font-size: 36px;
    margin-bottom: 0px;
    color: var(--primary-blue);
    font-family: var(--font-poppins);
    font-weight: 600;
}

.section-subtitle {
    font-family: var(--font-poppins);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-color);
    text-transform: capitalize;
    /* letter-spacing: 1px; */
    color: var(--dark-blue);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 900;
    font-family: var(--font-body);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    border: none;
    text-transform: capitalize;
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    fill: var(--primary-blue);
    width: 100%;
}

.btn-yellow:hover {
    background-color: #e5b927;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
    width: 100%;
    background: var(--white);
    padding: 15px 4%;
    box-shadow: 0 -6px 36px 0 rgba(0, 20.453503018190325, 162.50455017089843, .2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.logo {
    display: flex;
}

.logo img {
    width: 164px;
    height: 50px;
    object-fit: contain;
    margin: 0 10px 0 20px
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.site-header .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 4%;
    padding-right: 4%;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 80px 0;
    background: #F8F8F8;
    display: flex;
    justify-content: center;
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 500px;
    gap: 0px;
    margin: 0 12.5vw;
    padding: 10px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 60%;
}

.hero-image {
    position: absolute;
    right: 0vw;
    top: 50%;
    transform: translateY(-50%) scale(1.2);
    z-index: 1;
}


.hero-image img {
    width: 37vw;
    object-fit: cover;
    object-position: center center;
    margin-left: 95px;
}

.success-rate {
    font-family: var(--font-heading);
    display: inline-block;
    border-radius: 20px;
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--primary-blue)
}

.hero h1 {
    width: 41vw;
    font-size: 41px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-weight: 600;
    font-family: "Poppins", Sans-serif;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0;
    word-spacing: 0em;
    white-space: normal;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 27px;
    width: 38vw;
    color: var(--primary-blue);
}

.airport-checker-box {
    margin-bottom: 25px;
}

/* Form Inline cho Desktop */
.form-inline {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    /* width: 33vw; */
}

.input-group {
    flex: 1;
    text-align: left;
    font-family: BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        min-width: 300px;
}

.input-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 2px;
}

.input-group input {
    width: 100%;
    height: 48px;
    font-size: 16px;
    border: 1px solid #666;
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
}

.input-group input:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 2px rgb(58 133 197 / .2);
}

.form-inline .btn-yellow {
    flex: 1;
    padding: 13px;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--primary-blue);
    min-width: 300px;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: var(--dark-blue);
}

.hero-features {
    font-family: "Onest", Sans-serif;
    font-size: 17px;
    font-weight: 400;
}

/* =========================================
   JURISDICTIONS (BANNER CỜ XANH)
   ========================================= */
.blue-banner {
    background: linear-gradient(210deg, var(--primary-blue) 0%, #023B62 100%);
    padding: 50px 0;
}

.inline-flags {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.inline-flags .flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inline-flags .flag-item img {
    height: 20px;
    width: 40px;
    border-radius: 2px;
    object-fit: cover;
}

.inline-flags .flag-item p {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services .container {
    max-width: 80%;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 0px;
}

.service-card img {
    width: 95px;
    height: 95px;
}

.clean-cards .service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 8px;
}

.clean-cards h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.1;
}

.clean-cards p {
    font-size: 15px;
    color: #666;
}

/* =========================================
   COMPARISON (WHY CHOOSE US)
   ========================================= */
.dark-bg {
    padding: 9% 0;
    background-color: var(--dark-blue);
}

.why-choose-us {
    padding: 120px 0;
}

.compare-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.compare-box {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
}

.compare-box.left-box {
    background: transparent;
    padding-right: 20px;
    border: 1px solid #999;
}

.compare-box.right-box {
    background: var(--white);
    color: var(--text-color);
}

.compare-box h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.right-box h3 {
    color: var(--primary-blue);
    text-align: center;
}

.compare-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.compare-item i {
    font-size: 24px;
    margin-top: 3px;
}

.compare-box.left-box h3 {
    text-align: center;
}

.compare-box.left-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.compare-box.left-box p {
    font-size: 14px;
    color: #ccc;
}

.compare-box.right-box h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.compare-box.right-box p {
    font-size: 14px;
    color: #555;
}

/* =========================================
   PROCESS TIMELINE
   ========================================= */
.light-purple-bg {
    padding: 80px 0;
    background: var(--light-purple);
}

.timeline-wrapper {
    max-width: 95%;
    margin: 50px auto 0;
    text-align: left;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 45px;
}

.timeline-icon:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: -30px;
    /* Kéo dài đường dọc lên trên để nối liền mạch */
    bottom: -40px;
    /* Kéo dài xuống dưới để nối vào item kế tiếp */
    width: 3px;
    background: var(--primary-blue);
    z-index: 1;
}

.timeline-item:first-child::before {
    top: 10px;
    /* Để đường dọc dư ra ở đoạn trên cùng */
}

.timeline-item:last-child::before {
    bottom: auto;
    height: 150px;
    /* Để đường dọc dư ra một đoạn ở dưới cùng */
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 34px;
    /* Căn chuẩn ra giữa icon 70px */
    width: 45px;
    height: 2px;
    background: var(--primary-blue);
    z-index: 1;
}

.square-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-yellow);
    border-radius: 16px;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-blue);
    /* Đổi màu icon thành xanh đậm giống ảnh */
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.timeline-content {
    padding-top: 5px;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* =========================================
   STATS
   ========================================= */
.blue-map-bg {
    background-color: var(--primary-blue);
    background-image: url('https://i0.wp.com/ads.jetjustice.com/wp-content/uploads/2025/01/World-Map-PNG.png?fit=3467%2C1890&ssl=1');
    background-size: contain;
    background-position: center;
    padding: 55px 0;
    border-bottom: 4px solid var(--accent-yellow);
    position: relative;
}

.blue-map-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
}


.blue-map-bg .container {
    position: relative;
    z-index: 99;
    max-width: 80%;
}

.blue-map-bg .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 200px;
}

.stat-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-box .stat-desc {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    color: var(--accent-yellow);
    font-style: italic;
}

/* =========================================
   FEES
   ========================================= */
.fees {
    display: flex;
    align-items: center;
    padding: 60px 0;
    min-height: 485px;

}

.fees-text {
    width: 85%;
    font-size: 15px;
    font-family: var(--font-poppins);
    font-weight: 300;
    color: var(--dark-blue)
}

/* =========================================
   CURRENCY DROPDOWN STYLES
   ========================================= */
.currency-dropdown-container {
    position: relative;
    display: inline-block;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.currency-toggle-chevron {
    font-size: 10px;
}

.currency-selector {
    display: flex;
    align-items: center;
    gap: 7.5px;
    cursor: pointer;
    padding: 7px 9px;
    border-radius: 4px;
}


.currency-list.show {
    display: block;
}


.currency-list li:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

/* Container của danh sách */
.currency-list {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    min-width: 170px;
    z-index: 100;

    /* Cấu hình chiều cao và thanh cuộn để giống ảnh */
    max-height: 240px;
    overflow-y: auto;
    padding: 5px 0;
}

.currency-list.show {
    display: block;
}

/* Các item trong danh sách */
.currency-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.currency-list li:hover {
    background: #f4f4f4;
    /* Màu xám nhạt khi hover giống ảnh */
}

/* Căn chỉnh text 2 dòng */
.currency-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.currency-code {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
}

.currency-name {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}

/* Tùy chỉnh thanh cuộn (Scrollbar) cho giống ảnh */
.currency-list::-webkit-scrollbar {
    width: 16px;
}

.currency-list::-webkit-scrollbar-track {
    background: transparent;
}

.currency-list::-webkit-scrollbar-thumb {
    background-color: #8a8a8a;
    border-radius: 10px;
    border: 4px solid var(--white);
    /* Tạo khoảng trắng xung quanh thanh cuộn */
}

.currency-list::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}

/* Tùy chỉnh icon mũi tên cuộn (chỉ áp dụng trên các trình duyệt webkit) */
.currency-list::-webkit-scrollbar-button:single-button {
    background-color: var(--white);
    display: block;
    height: 14px;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.currency-list::-webkit-scrollbar-button:single-button:vertical:decrement {
    /* Nút mũi tên lên */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%238a8a8a'><polygon points='50,20 100,80 0,80'/></svg>");
}

.currency-list::-webkit-scrollbar-button:single-button:vertical:increment {
    /* Nút mũi tên xuống */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%238a8a8a'><polygon points='0,20 100,20 50,80'/></svg>");
}

.flag-icon {
    height: 20px;
    width: 30px;
    object-fit: cover;
}

/* =========================================
   AUTOCOMPLETE RESULTS
   ========================================= */
.position-relative {
    position: relative;
}

.autocomplete-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    text-align: left;
}

.acc-search-result-item {
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f9f9f9;
    color: var(--text-color);
}

.acc-search-result-item:hover,
.acc-search-result-item.acc-active {
    background-color: var(--bg-light);
    color: var(--primary-blue);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: var(--dark-blue);
    padding: 8px 0;
    color: var(--white);
}

.footer-inner {
    display: flex;
    justify-content: center;
}

.footer-content {
    text-align: center;
}

.copyright {
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    color: var(--white);
	font-family: "Poppins", Sans-serif;
    font-size: 10px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media screen and (min-width: 1600px) {
    .hero-image img {
        width: 26vw;
    }

    .hero h1 {
        width: 28vw;
    }

    .hero-image {
        right: 3vw;
    }

    .hero-desc {
        width: 25vw;
    }
}

/* =========================================
   RESPONSIVE (Mobile & Tablet)
   ========================================= */

/* --- Dành cho Tablet (iPad Mini/Air) trở xuống (Max-width 992px) --- */
@media (max-width:1024px) {

    /* Trả lại toàn bộ chiều rộng không gian, bỏ ép lề */
    .hero-inner {
        margin: 0;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        height: 535px;
    }

    .services .container,
    .blue-map-bg .container {
        max-width: 100%;
    }

    .fees-text,
    .hero-desc {
        width: 57%;
    }

    /* Header */
    .header-actions {
        gap: 15px;
    }

    /* Hero */
    .hero {
        padding: 10px 0%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        width:100%;
        padding: 0 6%;
    }

    .hero-image {
        display: none;
        /* Ẩn ảnh khiên ở Tablet/Mobile theo mockup */
    }

    .success-rate {
        margin: 0 0 20px 0;
        /* Căn trái đúng như iPad Mockup */
    }

    .hero h1 {
        width: 77%;
        font-size: 42px;
    }

    .hero-features {
        justify-content: center;
        /* Giữ 2 tick xanh ở giữa màn hình */
    }

    /* Hero Form - Chia 2 Cột Input song song trên Tablet */
    .form-inline {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 15px;
    }

    .form-inline .input-group {
        flex: 1 1 calc(50% - 15px);
        min-width: 250px;
        text-align: left;
    }

    .form-inline .btn-yellow {
        flex: 1 1 100%;
        margin-top: 5px;
        padding: 8px 16px;
        height: 48px;
    }

    /* Jurisdictions Flags - Lưới 2x2 */
    .inline-flags {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 25px 50px;
        padding: 0;
        justify-content: space-evenly;
    }

    .inline-flags .flag-item {
        justify-content: flex-start;
        flex-direction: row;
    }

    /* Services - Lưới 2x2 */
    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .service-card img {
        width: 150px;
        height: 150px;
    }

    /* Why Choose Us - GIỮ NGUYÊN 2 CỘT CHO IPAD */
    .compare-container {
        flex-direction: row;
        gap: 20px;
        margin-top: 30px;
    }

    .compare-box {
        padding: 30px 15px;
    }

    .compare-box.left-box {
        border: 1px solid #999;
    }

    .compare-box.right-box {
        padding: 30px 20px;
        border-radius: 12px;
    }

    /* Timeline */
    .timeline-wrapper {
        margin: 40px 20px 0;
    }
}

/* --- Dành cho Mobile (iPhone) trở xuống (Max-width 767px) --- */
@media (max-width: 767px) {

    /* Header - Căn chỉnh lại Logo & Nút cho đỡ chật */
    .logo img {
        width: 110px;
        margin: 0 5px 0 0;
    }

    .header-actions {
        gap: 8px;
    }

    .btn#new-claim-link {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
        flex-direction: unset;
    }

    .hero h1 {
        width: 100%;
        font-size: 28px;
    }

    .hero-desc {
        width: 100%;
        font-size: 18px;
    }

    /* Hero Form - Gộp thành 1 cột dọc duy nhất trên Mobile */
    .form-inline {
        flex-direction: column;
        max-width: 100%;
    }

    .form-inline .btn-yellow {
        margin-top: 5px;
        min-height: 48px;
        min-width: 100%;
    }

    .form-inline .input-group {
        flex: 1 1 100%;
        min-width: 0%;
        width: 100%;
    }

    .input-group input {
        width: 100%;
    }

    .hero-features {
        color: var(--primary-blue);
        justify-content: space-between;
        padding: 0 13px;
    }

    .success-rate {
        display: flex;
        justify-content: center;
    }

    /* Cờ - Khoảng cách hẹp lại */
    .inline-flags {
        gap: 20px 30px;
    }

    .inline-flags .flag-item p {
        font-size: 14px;
    }

    /* Services - 1 Cột Dọc */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Choose Us - XẾP CHỒNG (Stack) thành 1 cột dọc trên Mobile */
    .compare-container {
        flex-direction: column;
        gap: 30px;
    }

    .compare-box.left-box,
    .compare-box.right-box {
        padding: 25px 20px;
    }

    .compare-item {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .compare-box.left-box h4,
    .compare-box.right-box h4 {
        font-size: 17px;
        text-align: center;
    }

    .compare-box.left-box p,
    .compare-box.right-box p,
    .compare-box h3 {
        text-align: center;
    }
     .inline-flags .flag-item {
        justify-content: flex-start;
        flex-direction: column;
    }

    #new-claim-link {
        display: none
    }

    .clean-cards .service-card {
        padding: 10px 20px 20px 20px;
    }

    .clean-cards .service-card:first-child {
        padding: 30px 20px 20px 20px;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 30px;
        gap: 15px;
    }

    .timeline-item::before {
        top: -20px;
        bottom: -40px;
    }

    .square-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        border-radius: 12px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .timeline-item:first-child::before {
        top: -20px;
    }

    .timeline-item:last-child::before {
        height: 80px;
    }

    .timeline-item::after {
        top: 24px;
        width: 30px;
    }

    .timeline-content h4 {
        font-size: 19px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    /* Stats - Chuyển thành 1 cột dọc */
    .blue-map-bg .section-title {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        margin-top: 10px;
    }

    .timeline-item:first-child::before {
        top: 10px;
    }

    .timeline-item:last-child::before {
        bottom: auto;
        height: 140px;
    }
}