/* ===========================================
   style-new.css
   วางไฟล์นี้ใน css/style-new.css
   =========================================== */

@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600&display=swap");

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1547a0;
    --blue2: #223a66;
    --blue3: #e8f0fc;
    --gold: #e8a020;
    --red: #d93025;
    --bg: #f5f7fb;
    --white: #ffffff;
    --text: #1a1f2e;
    --muted: #6b7280;
    --pink: #b63766;
    --border: rgba(0, 0, 0, 0.07);
    --r: 14px;
    --rs: 10px;
    --shadow: 0 4px 16px rgba(21, 71, 160, 0.10);
}

body {
    font-family: 'Prompt', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.65;
}

a {
    text-decoration: none !important;
    color: inherit;
}

img {
    max-width: 100%;
}

/* ── TOP BAR ── */
.topbar {
    background: var(--blue2);
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    padding: 5px 0;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-info i {
    font-size: 13px;
}

.topbar-right {
    display: flex;
    gap: 20px;
}

.topbar-right a {
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.topbar-right a:hover {
    color: #fff;
}

/* ── HEADER ── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Logo */
.site-logo {
    align-items: center;
    display: flex;       
    gap: 18px;
}

.logo-img {
    height: 90px;
    width: auto;
}

.logo-main {
    font-size: 18px;
    color :var(--blue); 
    font-weight: 500;
    margin-top: -5px;
}

.logo-sub {
    font-size: 13px;
    color :var(--muted);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* Search */
.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 16px;
    transition: border-color .2s, box-shadow .2s;
}

/* login button */
.header-login {
    margin-left: auto; /* ✅ ดันชิดขวา */
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 12px;
}

.btn-login:hover {
    background: var(--blue2);
    color: #fff;
}
/* .header-search:focus-within {
    border-color: var(--blue2);
    box-shadow: 0 0 0 3px rgba(29, 111, 203, .1);
}

.header-search i {
    color: var(--muted);
    font-size: 14px;
}

.header-search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--text);
    width: 200px;
}

.header-search input::placeholder {
    color: var(--muted);
} */

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 18px;
    color: var(--text);
}

/* ── NAVBAR ── */
.main-nav {
    background: var(--white);
    border-top: 1px solid var(--border);
}

.nav-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    list-style: none;
    display: flex;
    gap: 2px;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    position: relative;
    transition: color .2s;
    white-space: nowrap;
}

.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    opacity: 0;
    transition: opacity .2s;
}

.nav-item:hover>a,
.nav-item.active>a {
    color: var(--pink);
}

.nav-item:hover>a::after,
.nav-item.active>a::after {
    opacity: 1;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    z-index: 200;
    list-style: none;
    padding: 6px 0;
    max-height: 360px;
    overflow-y: auto;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: var(--text);
    transition: background .15s, color .15s;
}

.dropdown li a:hover {
    background: var(--blue3);
    color: var(--pink);
}

.bg-1 {
  background: url("../images/bg/22.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 450px; 
  display: flex;
  align-items: center; 
  justify-content: center;
  color: #ffffff; 
}

.bg-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* สีดำโปร่งแสง 40% ปรับเพิ่มลดได้ */
  z-index: 1;
}

.bg-1 .container {
  position: relative;
  z-index: 2;
}

.bg-1 h1 {
    font-size: 3.5rem; 
    font-weight: 700;   
    line-height: 1.2;  
}

.bg-1 p {
    font-size: 1.2rem; 
    letter-spacing: 1px; 
}

/* ส่วนแถบข้อความด้านล่าง */
.cta-page {
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), 
              url("../images/bg/banner.jpg") no-repeat;
  background-size: cover;
  position: relative;
  min-height: 450px; 
  display: flex;
  align-items: center; 
  justify-content: center;
  color: #ffffff; 
}

.cta-content .divider {
    width: 70px;
    height: 4px;
    background: #e12454; /* สีแดงเข้มเน้นจุดสนใจ */
    margin-bottom: 25px;
}

.cta-page .section-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-page .title-color {
    color: #d2375e; /* ปรับให้เป็นสีขาวทั้งหมดเพื่อความอ่านง่ายบนพื้นเข้ม */
}

/* ปุ่ม Get Appoinment */
.btn-main-2 {
    background: #e12454;
    color: #fff;
    padding: 12px 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
}

.btn-main-2:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
/* ── HERO SECTION ── */
.hero-section {
    width: 100%;
    max-width: 1200px;  /* ปรับให้พอดีสายตา */
    margin: 0 auto;     /* จัดกลาง */
    padding: 20px;  
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 14px;
}

/* Hero Main Card */
.hero-main {
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: box-shadow .25s;
}

.hero-main:hover {
    box-shadow: 0 12px 36px rgba(21, 71, 160, .22);
}

.hero-bg {
    width: 100%;
    height: 100%;

    background-image: url('../images/bg/slider-bg-1.jpg');
    background-size: cover;           
    background-position: center;  
    background-repeat: no-repeat;

    position: absolute;
    border-radius: 12px;  
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;  
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}

.hero-text {
    position: absolute;
    bottom: 30px;
    left: 30px;

    color: #fff;
    z-index: 2;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    z-index: 3;           /* อยู่ด้านบนทุกอย่าง */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ให้ข้อความอยู่ด้านล่าง */
    color: #fff;
    align-items: flex-start;
}
.hero-row {
    width: 100%;
    display: flex;
    justify-content: space-between; /* ดันข้อความซ้าย ปุ่มขวา */
    align-items: flex-start;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    bottom: 30px;
    left: 30px;
    margin: 0;

}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto; 
    padding: 8px 25px;
    background: var(--pink);
    color: #fff;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 300;
    font-size: 12px;
    transition: 0.3s;
    margin-top: 10px;   /* ดันลง */
    position: relative;
}

.hero-btn:hover {
    background: #1f4fa3;
    color: #fff;
    transform: translateY(-2px);

}
.nursing-task {
    font-size: 18px;
    color: var(--bg);
}

.lph-hospital {
    font-size: 16px;
    font-weight: bold;
}
.slider-wrapper {
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;   
    overflow: hidden;
    padding: 10px 20px;
}

.slider {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}

/* Wrapper — จำกัดขนาดและตัดส่วนล้น */
.carousel-wrapper {
    max-width: 100%; 
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* Carousel — flex container */
.carousel {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
    width: max-content;
    align-items: stretch;  
}

.carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* ✅ เลื่อนแค่ครึ่งเดียวเพราะ clone */
}
.card {
    width: 300px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f0f0f0;  
    display: flex;
    align-items: center;        
    justify-content: center;  
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;   
}
.card:hover {
    transform: translateY(-8px);        /* เด้งขึ้น 8px */
    box-shadow: 0 12px 24px rgba(0,0,0,0.2); /* เงาตาม */
}

.card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}
.card a {
    display: block;
    width: 100%;
    height: 100%;
}

/* ตัวกลาง */
.card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* ซ้าย-ขวา */
.card.near {
    opacity: 0.7;
    transform: scale(0.9);
}

/* .hero-desc {
    font-size: 16px;
    line-height: 1.5;
    max-width: 520px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.85);
} */

/* .hero-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.hero-meta i {
    margin-right: 4px;
} */

/* Side News */
/* .side-news {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
 */
/* .side-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    padding: 11px 13px;
    cursor: pointer;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}

.side-item:hover {
    border-color: #b8ccf0;
    box-shadow: var(--shadow);
    transform: translateX(3px);
}

.side-thumb {
    width: 46px;
    height: 44px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.thumb-blue {
    background: linear-gradient(135deg, #1547a0, #1d6fcb);
}

.thumb-purple {
    background: linear-gradient(135deg, #7030a8, #b070d8);
}

.thumb-green {
    background: linear-gradient(135deg, #0a6040, #18a870);
}

.thumb-orange {
    background: linear-gradient(135deg, #b05010, #e08030);
}

.side-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .04em;
    display: block;
    margin-bottom: 2px;
}

.side-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    margin: 0;
}

.side-date {
    font-size: 11px;
    color: var(--muted);
    margin-top: 3px;
    display: block;
} */

/* ── CONTENT SECTIONS (shared) ── */
.content-section {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 0 24px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 9px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, var(--blue), var(--blue2));
    border-radius: 2px;
    flex-shrink: 0;
}

.section-more {
    margin-left: auto;
    font-size: 12.5px;
    color: var(--blue);
    font-weight: 500;
    transition: gap .2s;
}

/* .section-more:hover {
    text-decoration: underline;
} */

/* ── DEPT GRID ── */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.dept-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.dept-card:hover {
    border-color: #b8ccf0;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: var(--blue);
}

.dept-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.dept-card span {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.4;
}

/* ── NEWS GRID ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    align-items: start;         /* ✅ การ์ดสูงตามเนื้อหา ไม่ยืดเท่ากัน */
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    display: block;
    text-decoration: none !important;
    color: var(--text);
    transition: box-shadow .25s, transform .2s;
    /* ✅ ไม่กำหนด width/height เลย ให้ยืดตาม grid */
}

.news-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .10);
    transform: translateY(-3px);
}

.news-img {
    /* ✅ ลบ aspect-ratio และ height ออกทั้งหมด */
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 12px;
}

/* ✅ ใช้ img จริงแทน background-image */
.news-img img {
    width: 100%;
    height: auto;               /* ✅ สูงตามรูปจริงเลย ไม่บีบ ไม่ครอป */
    display: block;
    object-fit: contain;
}

.news-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: .04em;
}

.tag-blue {
    background: var(--blue);
    color: #fff;
}

.tag-green {
    background: #0a6040;
    color: #fff;
}


/* ── QUICK LINKS ── */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.quick-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 500;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.quick-item:hover {
    border-color: #b8ccf0;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    color: var(--blue);
}

.quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
/* ── FOOTER ── */
.site-footer {
    background: rgba(255, 255, 255, .75);
    border-top: 1px solid var(--border);
    padding: 0;
    overflow: hidden;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-brand {
    min-width: 0;
}

.footer-logo {
    width: 80px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(0, 0, 0, .06);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 16px;
    transition: background .2s;
    text-decoration: none !important;
}

.soc-btn:hover {
    background: var(--blue2);
    color: #fff;
}

/* ✅ ฝั่งขวา — grid 3 คอลัมน์ */
.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    min-width: 0;
}

.footer-menu-group,
.footer-contact {
    min-width: 0;
}

.footer-menu-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
    text-transform: capitalize;
}

.footer-divider {
    width: 30px;
    height: 3px;
    background: #c0392b;
    margin-bottom: 16px;
    border-radius: 2px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    line-height: 2.2;
}

.footer-menu-list a {
    font-size: 13px;
    text-decoration: none;
    color: var(--text);
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}

.footer-menu-list a:hover {
    opacity: 1;
    color: var(--blue);
}

.footer-contact p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-copy {
    text-align: center;
    font-size: 12px;
    padding: 12px;
    border-top: 1px solid var(--border);
    opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        gap: 24px;
    }
    .footer-right {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        padding: 24px 16px;
    }
    .footer-right {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 20px 16px;
    }
    .footer-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-main,
.side-item,
.dept-card,
.news-card,
.quick-item {
    animation: fadeUp .45s ease both;
}

.side-item:nth-child(2) {
    animation-delay: .06s;
}

.side-item:nth-child(3) {
    animation-delay: .12s;
}

.side-item:nth-child(4) {
    animation-delay: .18s;
}

.dept-card:nth-child(2) {
    animation-delay: .04s;
}

.dept-card:nth-child(3) {
    animation-delay: .08s;
}

.dept-card:nth-child(4) {
    animation-delay: .12s;
}

.dept-card:nth-child(5) {
    animation-delay: .16s;
}

.dept-card:nth-child(6) {
    animation-delay: .20s;
}

.dept-card:nth-child(7) {
    animation-delay: .24s;
}

.dept-card:nth-child(8) {
    animation-delay: .28s;
}

.news-card:nth-child(2) {
    animation-delay: .08s;
}

.news-card:nth-child(3) {
    animation-delay: .16s;
}

.quick-item:nth-child(2) {
    animation-delay: .05s;
}

.quick-item:nth-child(3) {
    animation-delay: .10s;
}

.quick-item:nth-child(4) {
    animation-delay: .15s;
}

.quick-item:nth-child(5) {
    animation-delay: .20s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .dept-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .topbar {
        display: none;
    }

    .header-search {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 8px 0;
    }

    .nav-item>a {
        padding: 10px 20px;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 16px;
    }

    .has-dropdown:hover .dropdown {
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}