/*
Theme Name: Interior Bath
Theme URI: https://interior.bathmvip.com
Author: BATHMVIP
Description: 경기광주 화장실 리모델링 전문 - highend-bath.net 동일 구조
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: interior-bath
*/

/* ============================================
   CSS RESET & ROOT VARIABLES
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-primary:       #046bd2;
    --color-primary-dark:  #045cb4;
    --color-dark:          #1e293b;
    --color-body:          #334155;
    --color-muted:         #64748b;
    --color-bg:            #f9fafb;
    --color-border:        #e2e8f0;
    --color-white:         #ffffff;

    --font: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --header-h: 80px;
    --max-w: 1200px;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-body);
    background: var(--color-white);
    overflow-x: hidden;
}

a { text-decoration: none; color: var(--color-primary); transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: 600;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.625rem; }

/* ============================================
   LAYOUT
============================================ */
.ast-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

/* ============================================
   HEADER  (#masthead)
============================================ */
#masthead {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-h);
}

.ast-primary-header-bar {
    height: var(--header-h);
}

.ast-primary-header-bar .ast-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Site Logo */
.ast-site-identity {
    display: flex;
    align-items: center;
}

.ast-site-identity .site-logo-img img {
    max-height: 50px;
    width: auto;
}

.ast-site-identity .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.ast-site-identity .site-title a {
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ast-site-identity .site-title .logo-mark {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 4px;
    color: white;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    line-height: 36px;
}

/* Navigation */
#ast-desktop-header .ast-builder-menu-1 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ast-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ast-nav-menu .menu-item > .menu-link,
.ast-nav-menu .menu-item > a {
    display: block;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-body);
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
}

.ast-nav-menu .menu-item > .menu-link:hover,
.ast-nav-menu .menu-item > a:hover,
.ast-nav-menu .menu-item.current-menu-item > a {
    color: var(--color-primary);
    background: #e8f2fc;
}

/* Mobile toggle */
.ast-mobile-header-content {
    display: none;
}

.ast-button-wrap .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.ast-button-wrap .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO / SLIDER  (.uc-mega-slider)
============================================ */
#site-content {
    margin-top: var(--header-h);
}

.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #1e293b;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: none;
    position: relative;
    width: 100%;
}

.hero-slide.active {
    display: block;
}

/* Slide background image */
.hero-slide-bg {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 사진 없을 때 플레이스홀더 */
.hero-slide-bg.no-image {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    height: 600px;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 80px;
    max-width: 860px;
}

.hero-slide-content .slide-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-slide-content .slide-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
}

.hero-slide-content .slide-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4,107,210,0.4);
}

/* Slider Controls */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    pointer-events: all;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--color-white);
    transform: scale(1.2);
}

/* ============================================
   SITE MAIN CONTENT  (.site-main)
============================================ */
.site-main {
    background: var(--color-bg);
}

/* ============================================
   SECTION COMMON
============================================ */
.ast-section {
    padding: 80px 0;
}

.ast-section-white {
    background: var(--color-white);
}

.ast-section-gray {
    background: var(--color-bg);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   HEADLINE SECTION  (슬라이더 바로 아래)
============================================ */
.headline-section {
    padding: 70px 0;
    background: var(--color-white);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.headline-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.35;
}

.headline-section p {
    font-size: 16px;
    color: var(--color-muted);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.headline-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-btn:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4,107,210,0.35);
}

/* ============================================
   PORTFOLIO SECTION  (.uc-post-grid)
============================================ */
.portfolio-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.portfolio-section .section-heading h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Post Grid — 3 columns */
.uc-post-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.uc-post-grid-item {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
}

.uc-post-grid-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

/* Image wrapper */
.uc-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #dbeafe;
}

.uc-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.uc-post-grid-item:hover .uc-post-image img {
    transform: scale(1.08);
}

/* Placeholder when no image */
.uc-post-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    gap: 10px;
    min-height: 220px;
}

.uc-post-image-placeholder .ph-icon { font-size: 40px; }
.uc-post-image-placeholder .ph-label {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
    text-align: center;
    padding: 0 16px;
}

/* Category badge */
.uc-post-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Card body */
.uc-post-body {
    padding: 20px 22px 22px;
}

.uc-post-meta {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.uc-post-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.uc-post-title a {
    color: inherit;
    transition: var(--transition);
}

.uc-post-title a:hover { color: var(--color-primary); }

.uc-post-excerpt {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* View all button */
.portfolio-more {
    text-align: center;
    margin-top: 50px;
}

.portfolio-more a {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-more a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================
   ADDRESS / CONTACT SECTION
============================================ */
.address-section {
    padding: 80px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.address-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.address-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.address-info .addr-divider {
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 24px;
}

.address-info p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.addr-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.addr-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
}

.addr-row .icon {
    width: 38px;
    height: 38px;
    background: #e8f2fc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.addr-row .text strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.addr-row .text span {
    color: var(--color-body);
    font-size: 15px;
}

.addr-row .text a {
    color: var(--color-body);
}
.addr-row .text a:hover { color: var(--color-primary); }

.addr-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.addr-cta .btn-primary {
    padding: 12px 28px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
}

.addr-cta .btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
}

.addr-cta .btn-outline {
    padding: 12px 28px;
    background: transparent;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
}

.addr-cta .btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Map */
.address-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #dbeafe;
}

.address-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.address-map .map-placeholder {
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #dbeafe 100%);
    color: var(--color-muted);
    gap: 12px;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.address-map .map-placeholder .map-icon { font-size: 48px; opacity: 0.6; }

/* ============================================
   FOOTER  (#colophon)
============================================ */
#colophon {
    background: var(--color-dark);
    color: rgba(255,255,255,0.65);
}

.footer-top {
    padding: 56px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand .f-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand .f-logo-mark {
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand .f-logo-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-white);
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    gap: 8px;
}

.footer-contact-list li span:first-child { flex-shrink: 0; }

/* Footer bottom bar */
.ast-footer-copyright {
    padding: 20px 0;
}

.ast-footer-copyright .ast-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.ast-footer-copyright p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ============================================
   INNER PAGE HERO  (About, Portfolio etc.)
============================================ */
.page-title-bar {
    padding: 64px 0 56px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #0f172a 100%);
    text-align: center;
    margin-top: var(--header-h);
}

.page-title-bar h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.page-title-bar p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }

/* ============================================
   ARCHIVE / BLOG
============================================ */
.ast-archive-wrap {
    padding: 70px 0;
    background: var(--color-bg);
}

.ast-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ast-post-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: var(--transition);
}

.ast-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}

.ast-post-card .post-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #dbeafe;
}

.ast-post-card .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ast-post-card:hover .post-thumb img { transform: scale(1.06); }

.ast-post-card .post-body {
    padding: 22px;
}

.ast-post-card .post-date {
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.ast-post-card .post-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.ast-post-card .post-title a { color: inherit; }
.ast-post-card .post-title a:hover { color: var(--color-primary); }

.ast-post-card .post-excerpt {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Pagination */
.ast-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.ast-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-body);
    background: white;
    transition: var(--transition);
}

.ast-pagination .page-numbers:hover,
.ast-pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ============================================
   SINGLE POST
============================================ */
.single-article-wrap {
    padding: 70px 0;
    background: var(--color-white);
}

.single-article {
    max-width: 820px;
    margin: 0 auto;
}

.single-article .entry-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.single-article .entry-meta {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.single-article .entry-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-body);
}

.single-article .entry-content p { margin-bottom: 1.4em; }

.single-article .entry-content img {
    border-radius: 6px;
    margin: 1.5em 0;
    max-width: 100%;
}

.single-article .entry-content h2,
.single-article .entry-content h3 {
    margin: 1.8em 0 0.8em;
}

/* Post navigation */
.post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
    gap: 20px;
}

.post-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-contact {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9990;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover { transform: translateY(-3px) scale(1.08); }

.float-btn-call { background: var(--color-primary); color: white; }
.float-btn-kakao { background: #FEE500; color: #3A1D1D; }
.float-btn-top { background: var(--color-dark); color: white; font-size: 16px; }

.float-btn .tip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.float-btn:hover .tip { opacity: 1; }

#float-top-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#float-top-btn.visible {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 921px) {
    html { font-size: 91.2%; }

    /* Header mobile */
    #ast-desktop-header .ast-builder-menu-1 { display: none; }
    .ast-button-wrap .menu-toggle { display: flex; }

    .mobile-nav-open {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--color-white);
        padding: 20px;
        z-index: 9998;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-open .ast-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .mobile-nav-open .ast-nav-menu .menu-item > a {
        padding: 14px 16px;
        font-size: 16px;
        border-bottom: 1px solid var(--color-border);
        border-radius: 0;
    }

    /* Hero */
    .hero-slide-bg { height: 420px; }
    .hero-slide-content { padding: 0 40px; }
    .hero-slide-content h2 { font-size: 2rem; }

    /* Grid */
    .uc-post-grid-wrap { grid-template-columns: repeat(2, 1fr); }
    .ast-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .address-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 544px) {
    html { font-size: 91.2%; }

    .hero-slide-bg { height: 320px; }
    .hero-slide-content { padding: 0 24px; }
    .hero-slide-content h2 { font-size: 1.6rem; }
    .hero-slide-content .slide-label { display: none; }

    .uc-post-grid-wrap { grid-template-columns: 1fr; }
    .ast-posts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .headline-section h2 { font-size: 1.6rem; }
    .section-heading h2 { font-size: 1.5rem; }
}
