/* tuyendung.hoanghamobile.com - Exact Clone CSS */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/fonts/inter/Inter-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter/Inter-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/inter/Inter-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/inter/Inter-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/inter/Inter-700.ttf') format('truetype');
}

:root {
    --primary: #00493D;
    --primary-light: #006b5a;
    --bg-main: #FFFFFF;
    --bg-gray: #FFFFFF;
    --text-dark: #3a3f47;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
    --footer-bg: #141414;
    --link-green: #00493D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-gray);
    line-height: 1.6;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER - Exact clone of original
   ============================================ */
.main-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-logo img {
    height: 32px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    margin-top: 4px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    height: 100%;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    gap: 2px;
}

.nav-item i {
    font-size: 18px;
    color: var(--text-dark);
    transition: color 0.2s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.nav-item:hover i,
.nav-item.active i {
    color: var(--primary);
}

.header-mobile-toggle {
    display: none;
}

.header-mobile-toggle button {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
}

/* ============================================
   SEARCH BAR - Below header
   ============================================ */
.search-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-field {
    flex: 1;
    position: relative;
}

.search-field-label {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.search-field input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    color: var(--text-dark);
}

.search-field input:focus {
    border-color: var(--primary);
}

.search-location {
    width: 220px;
    position: relative;
}

.search-location-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.search-location select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.search-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    width: 48px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s;
    align-self: flex-end;
}

.search-btn:hover {
    background-color: var(--primary-light);
}

/* ============================================
   HOT JOBS TICKER
   ============================================ */
.hot-jobs-ticker {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.hot-ticker-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.hot-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
    color: var(--text-dark);
}

.hot-ticker-item i {
    color: #f59e0b;
    font-size: 16px;
}

/* ============================================
   HOMEPAGE - Two Column Cards
   ============================================ */
.home-content {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 16px;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--primary);
    color: var(--white);
}

.home-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.home-card-body {
    padding: 20px 24px;
}

.home-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.home-card-jobs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-card-jobs li {
    padding: 6px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-card-jobs li::before {
    content: '●';
    color: var(--white);
    font-size: 8px;
}

.home-card-jobs li a {
    color: var(--white);
}

.home-card-jobs li a:hover {
    text-decoration: underline;
}

.home-card-btn {
    display: block;
    text-align: center;
    margin: 20px 24px 24px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.home-card-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   JOB LIST PAGE - Sidebar + Main
   ============================================ */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

.list-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

/* Sidebar */
.list-sidebar {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.sidebar-header i {
    color: var(--primary);
    font-size: 18px;
}

.sidebar-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.sidebar-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {}

.sidebar-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    border-left: 3px solid transparent;
    transition: all 0.15s;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background-color: #f0faf7;
    border-left-color: var(--primary);
    color: var(--primary);
}

/* List Search Bar */
.list-search-bar {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-search-bar .search-field {
    flex: 1;
}

.list-search-bar .search-field input,
.list-search-bar .search-location select {
    height: 40px;
}

/* Job count + Title */
.list-header {
    margin-bottom: 16px;
}

.list-count {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.list-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Job List Body Wrapper */
.job-list-body {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

/* Job List Items */
.job-list-item {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: background-color 0.2s;
}

.job-list-item:last-child {
    border-bottom: none;
}

.job-list-item:hover {
    background-color: #fcfcfc;
}

.job-list-item-left {
    flex: 1;
}

.job-list-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 8px;
}

.job-list-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.job-list-title a {
    color: inherit;
}

.job-list-title a:hover {
    color: var(--primary);
}

.job-list-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--text-muted);
}

.job-list-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.job-list-meta-item i {
    width: 16px;
    text-align: center;
    color: var(--text-muted);
    margin-top: 2px;
    font-size: 13px;
}

.job-list-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 150px;
    text-align: right;
}

.job-list-deadline {
    font-size: 13px;
    color: var(--text-muted);
}

.job-list-apply-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.2s;
}

.job-list-apply-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s;
}

.pagination a:hover {
    background-color: var(--bg-gray);
}

.pagination .active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   JOB DETAIL PAGE
   ============================================ */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    padding: 24px 0 40px;
}

.detail-main {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
}

.detail-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.4;
}

.detail-section {
    margin-bottom: 24px;
}

.detail-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.detail-section p,
.detail-section div {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
}

.detail-section ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.detail-section li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.7;
}

/* Detail Sidebar */
.detail-sidebar-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: 72px;
}

.sidebar-job-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.btn-apply-main {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-bottom: 20px;
}

.btn-apply-main:hover {
    background-color: var(--primary-light);
}

.sidebar-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.sidebar-meta-item i {
    width: 18px;
    text-align: center;
    color: var(--text-muted);
    margin-top: 2px;
}

.sidebar-meta-item .label {
    display: none;
}

.sidebar-meta-item .val {
    color: var(--text-dark);
}

.sidebar-meta-item .val strong {
    font-weight: 700;
}

/* ============================================
   APPLICATION FORM PAGE
   ============================================ */
.apply-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    padding: 24px 0 40px;
}

.apply-main {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 32px;
}

.apply-title {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;

}

.apply-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.form-row label .required {
    color: #ef4444;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    color: var(--text-dark);
    background: var(--white);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--primary);
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-group {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.radio-option input[type="radio"] {
    accent-color: #f59e0b;
}

.radio-option.selected,
.radio-option:has(input:checked) {
    border-color: #f59e0b;
    background-color: #fffbeb;
}

.input-with-unit {
    display: flex;
    align-items: center;
}

.input-with-unit input {
    border-radius: 4px 0 0 4px;
    flex: 1;
}

.input-with-unit .unit {
    padding: 10px 12px;
    background-color: var(--bg-gray);
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.photo-upload {
    width: 80px;
    height: 80px;
    border: 2px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--bg-gray);
    transition: border-color 0.2s;
}

.photo-upload:hover {
    border-color: var(--primary);
}

.photo-upload i {
    font-size: 24px;
    color: var(--text-muted);
}

.photo-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.btn-submit-apply {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    margin-top: 24px;
    transition: background-color 0.2s;
}

.btn-submit-apply:hover {
    background-color: var(--primary-light);
}

/* Apply Sidebar - same as detail sidebar */
.apply-sidebar-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    position: sticky;
    top: 72px;
}

.apply-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.3;
}

.btn-view-detail {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    margin-top: 16px;
    transition: background-color 0.2s;
}

.btn-view-detail:hover {
    background-color: var(--primary-light);
}

/* ============================================
   RESULTS LOOKUP PAGE
   ============================================ */
.lookup-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    max-width: 550px;
    margin: 40px auto;
}

.lookup-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 16px;
}

.about-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
}

/* ============================================
   JOBS NEAR ME (Map)
   ============================================ */
.map-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    height: calc(100vh - 56px);
    overflow: hidden;
}

.map-sidebar {
    background-color: var(--white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow:auto;
}

.map-sidebar-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.map-sidebar-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.map-sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-job-item {
    padding: 12px 16px;
    border-radius: 6px;
    background-color: #f8f9fa;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
}

.map-job-item:hover,
.map-job-item.active {
    background-color: var(--white);
    border-color: var(--primary);
}

.map-job-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.map-container-area {
    width: 100%;
    height: 100%;
}

/* ============================================
   FOOTER - Exact clone of original
   ============================================ */
.main-footer {
    background-color: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-company-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-address-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.footer-map-link {
    color: var(--primary-light);
    font-size: 13px;
    cursor: pointer;
}

.footer-map-link:hover {
    text-decoration: underline;
}

.footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.footer-address-block {
    padding-bottom: 0;
}

.footer-address-block h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social {
    text-align: center;
    padding: 28px 16px 36px;
}

.footer-social-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 16px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: all 0.2s;
}

.footer-social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   MAIN CONTENT WRAPPER
   ============================================ */
.main-content {
    min-height: calc(100vh - 56px - 300px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        height: auto;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
    }

    .header-nav.show {
        display: flex;
    }

    .nav-item {
        flex-direction: row;
        width: 100%;
        padding: 12px 0;
        border-bottom: none;
        gap: 12px;
    }

    .header-mobile-toggle {
        display: block;
    }

    .home-grid {
        grid-template-columns: 1fr;
    }

    .list-layout {
        grid-template-columns: 1fr;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .apply-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar-card,
    .apply-sidebar-card {
        position: relative;
        top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .map-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 500px 350px;
        height: auto;
    }

    .search-container {
        flex-wrap: wrap;
    }

    .search-location {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hot-ticker-inner {
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        padding: 8px;
    }

    .hot-ticker-item {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .form-row-inline {
        grid-template-columns: 1fr;
    }

    .search-container {
        flex-direction: column;
    }

    .search-field {
        width: 100%;
    }

    .search-btn {
        width: 100%;
    }
}
