/* ==========================================================================
   1. Design Tokens
   ========================================================================== */

:root {
    --color-primary:      #0f1f3d;
    --color-primary-dark: #0a1628;
    --color-accent:       #2563eb;
    --color-accent-dark:  #1d4ed8;
    --color-dark:         #1a1a2e;
    --color-text:         #1a1a2e;
    --color-text-muted:   #64748b;
    --color-bg:           #f2f4f7;
    --color-bg-white:     #ffffff;
    --color-border:       #e2e8f0;
    --color-hero-overlay: rgba(8, 18, 40, 0.72);

    --font-ja: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.7;

    --container-max:  1140px;
    --sidebar-width:  272px;
    --gap-section:    2.5rem;
    --gap-grid:       1.125rem;
    --border-radius:  8px;
    --transition:     0.15s ease;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-ja);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.75em;
    line-height: 1.4;
    font-weight: 700;
}

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   3. Utilities & Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.layout-two-col {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 2rem;
    align-items: start;
    padding-top: var(--gap-section);
    padding-bottom: var(--gap-section);
}

.main-col {
    min-width: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    padding-left: 0.75rem;
    border-left: 4px solid var(--color-accent);
    margin-bottom: 1.25rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

.front-section {
    margin-bottom: var(--gap-section);
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: var(--font-ja);
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn--outline-light:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.btn--sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

/* ==========================================================================
   5. Header
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 54px;
}

/* Logo */
.site-header__logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-accent);
    color: #fff;
    font-size: 1.0625rem;
    font-weight: 900;
    border-radius: 5px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Navigation */
.site-nav {
    margin-left: auto;
}

.site-nav__list {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background var(--transition), color var(--transition);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item a {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

/* Search toggle */
.site-header__search-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    flex-shrink: 0;
}

.site-header__search-toggle:hover {
    color: #fff;
}

/* Hamburger (mobile) */
.site-header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

/* Search bar */
.site-header__search-bar {
    background: var(--color-primary-dark);
    padding: 0.75rem 0;
}

.site-header__search-bar .search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
}

.site-header__search-bar .search-field {
    flex: 1;
    padding: 0.5rem 0.875rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.9rem;
    font-family: var(--font-ja);
}

.site-header__search-bar .search-field::placeholder {
    color: rgba(255,255,255,0.5);
}

.site-header__search-bar .search-submit {
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: var(--color-dark);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-ja);
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */

.hero {
    position: relative;
    background-color: var(--color-primary);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,18,40,0.82) 0%, rgba(8,18,40,0.66) 50%, rgba(8,18,40,0.88) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 3.5rem;
    padding-bottom: 3.25rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__content {
    max-width: 520px;
    text-align: center;
}

.hero__heading {
    font-size: clamp(1.375rem, 4vw, 2.125rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-bottom: 0.875rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero__subtext {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.875rem;
    line-height: 1.85;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ==========================================================================
   7. Area Grid
   ========================================================================== */

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.area-grid__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    border: 1.5px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-bg-white);
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.area-grid__btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: #eff6ff;
}

/* ==========================================================================
   8. Brand Grid
   ========================================================================== */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.625rem;
}

.brand-card {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 0.625rem;
    border: 1.5px solid var(--color-border);
    border-radius: 6px;
    text-decoration: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.brand-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 2px 10px rgba(37,99,235,0.12);
}

.brand-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    background: var(--color-primary);
}

.brand-card__logo {
    max-height: 34px;
    width: auto;
    max-width: 34px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-card__info {
    min-width: 0;
}

.brand-card__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

.brand-card__en {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-card__count {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   9. Post Card
   ========================================================================== */

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-grid);
}

.post-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.post-card__thumb-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.post-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card__thumb {
    transform: scale(1.04);
}

.post-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.post-card__tag {
    display: inline-block;
    padding: 0.2rem 0.625rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
}

.post-card__tag:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.post-card__date {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.post-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.post-card__title a {
    color: var(--color-dark);
    text-decoration: none;
}

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

.post-card__excerpt {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ==========================================================================
   10. Sidebar
   ========================================================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.06);
    padding: 20px 18px 18px;
}

.sidebar-widget__title {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0;
    background: transparent;
    color: var(--color-dark);
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* About widget */
.sidebar-about__inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}

.sidebar-about__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-about__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.75rem;
    font-weight: 900;
}

.sidebar-about__bio {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Popular posts */
.sidebar-popular__list {
    padding: 0.5rem 0;
}

.sidebar-popular__item {
    border-bottom: 1px solid var(--color-border);
}

.sidebar-popular__item:last-child {
    border-bottom: none;
}

.sidebar-popular__link {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: background var(--transition);
}

.sidebar-popular__link:hover {
    background: var(--color-bg);
}

.sidebar-popular__thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.sidebar-popular__thumb--placeholder {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: var(--color-border);
    flex-shrink: 0;
}

.sidebar-popular__title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category list */
.sidebar-categories__list {
    padding: 0.5rem 0;
}

.sidebar-categories__item {
    border-bottom: 1px solid var(--color-border);
}

.sidebar-categories__item:last-child {
    border-bottom: none;
}

.sidebar-categories__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    text-decoration: none;
    transition: background var(--transition);
    color: var(--color-text);
}

.sidebar-categories__link:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.sidebar-categories__name {
    font-size: 0.875rem;
}

.sidebar-categories__count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: #f1f5f9;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    min-width: 28px;
    text-align: center;
    font-weight: 700;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.7);
    margin-top: 4rem;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.site-footer .site-header__logo-link {
    margin-bottom: 0.75rem;
    display: inline-flex;
}

.site-footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.site-footer__nav-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.875rem;
}

.site-footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.site-footer__nav-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__nav-list a:hover {
    color: var(--color-accent);
}

.site-footer__copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.site-footer__copyright p {
    margin: 0;
}

/* ==========================================================================
   12. Single Article
   ========================================================================== */

.single-content {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--color-border);
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 1.625rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.entry-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16 / 7;
}

.entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.entry-content {
    font-size: 1rem;
    line-height: 1.9;
}

.entry-content h2 {
    font-size: 1.25rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 0.75rem;
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.entry-content img {
    border-radius: var(--border-radius);
}

/* Parking detail table */
.parking-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.parking-detail-table th,
.parking-detail-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.parking-detail-table th {
    background: var(--color-bg);
    font-weight: 700;
    width: 30%;
    white-space: nowrap;
}

/* ==========================================================================
   13. Archive Page
   ========================================================================== */

.archive-header {
    background: var(--color-primary);
    color: #fff;
    padding: 2rem 0;
    margin-bottom: 0;
}

.archive-header .container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.archive-title {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.archive-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* ==========================================================================
   14. Breadcrumb
   ========================================================================== */

.breadcrumb {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: 0.25rem;
    color: var(--color-border);
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   15. Pagination
   ========================================================================== */

.posts-navigation,
.post-navigation {
    margin-top: 2rem;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-links a,
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.page-numbers:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.page-numbers.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* ==========================================================================
   16. Responsive
   ========================================================================== */

@media ( max-width: 1024px ) {
    :root {
        --sidebar-width: 260px;
    }
}

@media ( max-width: 768px ) {
    .layout-two-col {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1; /* サイドバーをコンテンツ前に表示 */
    }

    .area-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-header__menu-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        padding: 0.5rem 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 0;
    }

    .site-nav__list a {
        padding: 0.875rem 1.25rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hero__heading {
        font-size: 1.5rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
        text-align: center;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media ( max-width: 480px ) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .single-content {
        padding: 1.25rem;
    }
}

/* ==========================================================================
   17. Breadcrumb Bar
   ========================================================================== */

.breadcrumb-bar {
    background: #f8f8f8;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
}

.breadcrumb {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin: 0;
    padding: 0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb li + li::before {
    content: '›';
    color: var(--color-border);
    margin-right: 0;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb li:last-child {
    color: var(--color-text);
    font-weight: 500;
}

/* ==========================================================================
   18. Single Article Entry
   ========================================================================== */

.entry {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.entry-header {
    padding: 1.75rem 1.75rem 1.25rem;
}

.entry-title {
    font-size: clamp(1.25rem, 3vw, 1.625rem);
    font-weight: 900;
    line-height: 1.45;
    color: var(--color-dark);
    margin-bottom: 0.875rem;
}

.entry-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.entry-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.entry-meta__cat {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.75rem;
    background: rgba(26,58,107,0.08);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition);
}

.entry-meta__cat:hover {
    background: var(--color-primary);
    color: #fff;
}

.entry-thumbnail {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.entry-thumbnail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Entry Content (Gutenberg editor output) ===== */

.entry-content {
    padding: 1.75rem;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text);
}

.entry-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    border-left: 4px solid var(--color-primary);
    padding: 0.25rem 0 0.25rem 0.875rem;
    margin: 2.25rem 0 1rem;
    background: rgba(26,58,107,0.04);
}

.entry-content h2:first-child {
    margin-top: 0;
}

.entry-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--color-border);
}

.entry-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.25rem 0 0.5rem;
}

.entry-content p {
    margin-bottom: 1.125rem;
}

.entry-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.entry-content img {
    border-radius: var(--border-radius);
    max-width: 100%;
    height: auto;
}

.entry-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.125rem;
}

.entry-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.125rem;
}

.entry-content li {
    margin-bottom: 0.35rem;
}

/* Parking detail table inside entry-content */
.entry-content table,
.parking-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.9rem;
}

.entry-content table th,
.entry-content table td,
.parking-detail-table th,
.parking-detail-table td {
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.entry-content table th,
.parking-detail-table th {
    background: #f0f4f8;
    font-weight: 700;
    width: 28%;
    white-space: nowrap;
    color: var(--color-dark);
}

/* ==========================================================================
   19. Info Box (提携店舗・割引サービスのご案内)
   ========================================================================== */

.info-box {
    margin: 0 1.75rem 1.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
}

.info-box__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.info-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    font-style: normal;
    line-height: 1;
}

.info-box__desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Discount Tier Grid */

.discount-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.discount-tier {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 6px;
    padding: 0.875rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    align-items: center;
}

.discount-tier--highlight {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.discount-tier__amount {
    font-size: 0.75rem;
    line-height: 1.4;
    display: block;
    color: var(--color-text-muted);
}

.discount-tier--highlight .discount-tier__amount {
    color: rgba(255,255,255,0.75);
}

.discount-tier__benefit {
    font-size: 1.0625rem;
    font-weight: 900;
    color: var(--color-primary);
    display: block;
}

.discount-tier--highlight .discount-tier__benefit {
    color: var(--color-accent);
}

/* Accordion */

.accordion {
    margin-top: 0.75rem;
}

.accordion__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 4px;
    padding: 0.625rem 0.875rem;
    cursor: pointer;
    font-family: var(--font-ja);
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e40af;
    text-align: left;
    transition: background var(--transition);
}

.accordion__toggle:hover {
    background: #dbeafe;
}

.accordion__toggle[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.accordion__toggle[aria-expanded="true"] .accordion__arrow {
    transform: rotate(180deg);
}

.accordion__arrow {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.accordion__content {
    border: 1px solid #bfdbfe;
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #1e3a8a;
    background: #f0f7ff;
}

/* ==========================================================================
   20. Parking Section (ACF: 駐車場ごとのセクション)
   ========================================================================== */

.parking-section {
    padding: 0 1.75rem 1.75rem;
}

.parking-section + .parking-section {
    border-top: 1px solid var(--color-border);
    padding-top: 1.75rem;
}

.parking-section__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    border-left: 4px solid var(--color-primary);
    padding: 0.3rem 0 0.3rem 0.875rem;
    margin-bottom: 1rem;
    background: rgba(26,58,107,0.04);
}

/* Parking Map */

.parking-map {
    margin-top: 1.25rem;
}

.parking-map__embed {
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #e8eaf0;
    margin-bottom: 0.75rem;
}

.parking-map__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.parking-map__buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   21. Tip / Summary Items (まとめセクション用)
   ========================================================================== */

/* Used inside entry-content via custom HTML block */

.tip-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0;
    list-style: none;
}

.tip-item {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #22c55e;
    border-radius: var(--border-radius);
    padding: 1rem 1.125rem;
}

.tip-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.tip-item__icon svg {
    color: #fff;
}

.tip-item__body {}

.tip-item__title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.tip-item__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   22. Post Footer (Tags + Share)
   ========================================================================== */

.post-footer {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition);
}

.post-tag::before {
    content: '#';
    margin-right: 0.1em;
}

.post-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.share-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-section__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.share-btn:hover {
    opacity: 0.8;
    transform: scale(1.08);
}

.share-btn--twitter {
    background: #000;
    color: #fff;
}

.share-btn--facebook {
    background: #1877f2;
    color: #fff;
}

/* ==========================================================================
   23. Sidebar Brand Card (記事ページ)
   ========================================================================== */

.sidebar-brand {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.sidebar-brand__header {
    padding: 1rem;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-brand__icon {
    width: 42px;
    height: 42px;
    background: var(--color-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-dark);
    flex-shrink: 0;
    transform: rotate(0deg);
}

.sidebar-brand__name-wrap {}

.sidebar-brand__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.sidebar-brand__subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
}

.sidebar-brand__body {
    padding: 1rem;
}

.sidebar-brand__logo {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.sidebar-brand__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sidebar-brand__btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   24. Footer (Updated: クイックリンク + フォローする)
   ========================================================================== */

.site-footer__follow {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.site-footer__follow-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.footer-social-btn:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

/* ==========================================================================
   25. Single Page Responsive
   ========================================================================== */

@media ( max-width: 768px ) {
    .entry-header {
        padding: 1.25rem 1.25rem 1rem;
    }

    .entry-content {
        padding: 1.25rem;
    }

    .info-box {
        margin: 0 1.25rem 1.25rem;
        padding: 1rem 1.125rem;
    }

    .discount-table {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .discount-tier {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 0.625rem 0.875rem;
    }

    .discount-tier__amount {
        flex: 1;
    }

    .discount-tier__benefit {
        text-align: right;
    }

    .parking-section {
        padding: 0 1.25rem 1.25rem;
    }

    .parking-section__title {
        font-size: 1rem;
    }

    .parking-map__buttons {
        flex-direction: column;
    }

    .parking-map__buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .post-footer {
        padding: 1rem 1.25rem;
    }

    .parking-detail-table th {
        width: 35%;
        white-space: normal;
    }
}

/* ==========================================================================
   26. Credit Card Guide (credit_card_guide 投稿タイプ)
   ========================================================================== */

/* --- カード概要ボックス --- */

.card-overview {
    margin: 0 1.75rem 1.75rem;
    border: 2px solid var(--color-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card-overview__specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 2px solid var(--color-primary);
}

.card-spec {
    padding: 1rem 0.75rem;
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.card-spec:last-child {
    border-right: none;
}

.card-spec__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.375rem;
}

.card-spec__value {
    display: block;
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.card-spec__value--sm {
    font-size: 0.9375rem;
}

.card-spec__note {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.card-overview__apply {
    padding: 1.25rem 1.5rem;
    text-align: center;
    background: rgba(26,58,107,0.03);
}

.card-overview__apply .btn {
    min-width: 260px;
}

.card-overview__pr-note {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    margin-top: 0.625rem;
    margin-bottom: 0;
}

/* --- 百貨店駐車場優待セクション --- */

.parking-benefit {
    padding: 0 1.75rem 1.75rem;
}

.parking-benefit__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    border-left: 4px solid var(--color-accent);
    padding: 0.3rem 0 0.3rem 0.875rem;
    margin-bottom: 1rem;
    background: rgba(200,168,75,0.06);
}

.parking-benefit__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.parking-benefit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.parking-benefit-table th,
.parking-benefit-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    text-align: left;
    vertical-align: middle;
}

.parking-benefit-table thead th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.parking-benefit-table tbody tr:nth-child(even) td {
    background: var(--color-bg);
}

.parking-benefit-table .benefit-col {
    font-weight: 700;
    color: var(--color-primary);
}

/* --- 申し込みCTA（ページ下部） --- */

.card-apply-cta {
    margin: 0 1.75rem 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
}

.card-apply-cta__heading {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.card-apply-cta__note {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.875rem;
    margin-bottom: 0;
}

/* --- Responsive --- */

@media ( max-width: 768px ) {
    .card-overview__specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-spec:nth-child(2) {
        border-right: none;
    }

    .card-spec {
        border-bottom: 1px solid var(--color-border);
    }

    .card-overview__apply .btn {
        min-width: 0;
        width: 100%;
    }

    .parking-benefit-table {
        font-size: 0.8125rem;
    }

    .parking-benefit-table th,
    .parking-benefit-table td {
        padding: 0.625rem 0.75rem;
    }

    .card-apply-cta {
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }

    .card-apply-cta .btn {
        width: 100%;
    }
}

/* ==========================================================================
   27. Front Page – New Design Components (parking-guide.html準拠)
   ========================================================================== */

/* ---- フロントページ カードラッパー ---- */
.front-card {
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 26px 24px 22px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.06);
    margin-bottom: var(--gap-grid);
}

/* ---- セクションヘッダー ---- */
.front-sec-head {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.front-sec-title {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.01em;
    color: var(--color-dark);
    margin: 0;
}

.front-sec-link {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    transition: opacity var(--transition);
}

.front-sec-link:hover {
    opacity: 0.7;
    color: var(--color-accent);
}

/* ---- 記事リスト（フロントページ） ---- */
.article-list {
    display: flex;
    flex-direction: column;
}

.article-item {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    transition: opacity var(--transition);
    color: inherit;
}

.article-item:first-child {
    padding-top: 0;
}

.article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.article-item:hover {
    opacity: 0.75;
}

.art-thumb {
    width: 160px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.art-thumb-inner {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8eef5;
    color: #b0bccf;
}

.art-body {
    flex: 1;
    min-width: 0;
}

.art-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.art-tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 0.65625rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    background: var(--color-accent);
}

.art-date {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
}

.art-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 6px;
    color: var(--color-dark);
}

.art-excerpt {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* ---- サイドバー: Authorウィジェット ---- */
.sb-author-row {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.sb-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #374151, #4b5563);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    overflow: hidden;
}

.sb-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sb-author-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.sb-author-role {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    margin-bottom: 7px;
}

.sb-author-bio {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 9px;
}

.sb-author-sns {
    display: flex;
    gap: 8px;
}

.sb-sns-btn {
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: border-color var(--transition), color var(--transition);
}

.sb-sns-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ---- サイドバー: 人気記事 ---- */
.sb-popular-list {
    display: flex;
    flex-direction: column;
}

.sb-pop-item {
    display: flex;
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}

.sb-pop-item:first-child {
    padding-top: 0;
}

.sb-pop-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sb-pop-item:hover {
    opacity: 0.72;
}

.sb-pop-thumb {
    width: 54px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8eef5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-pop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sb-pop-title {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-dark);
}

.sb-pop-rank {
    font-size: 0.625rem;
    color: var(--color-text-muted);
    margin-top: 3px;
}

/* ---- サイドバー: カテゴリ ---- */
.sb-cat-list {
    display: flex;
    flex-direction: column;
}

.sb-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}

.sb-cat-item:first-child {
    padding-top: 0;
}

.sb-cat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sb-cat-item:hover .sb-cat-name {
    color: var(--color-accent);
}

.sb-cat-name {
    font-size: 0.75rem;
    color: var(--color-text);
    transition: color var(--transition);
}

.sb-cat-count {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    background: #f1f5f9;
    padding: 1px 7px;
    border-radius: 10px;
    font-weight: 700;
}

/* ---- section-title の override (前ページ全体用) ---- */
.front-card .section-title {
    font-size: 1rem;
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
    color: var(--color-dark);
}

/* ---- Responsive 27 ---- */
@media ( max-width: 768px ) {
    .front-card {
        padding: 18px 14px 16px;
    }

    .article-item {
        flex-direction: column;
        gap: 11px;
    }

    .art-thumb {
        width: 100%;
    }

    .brand-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .brand-card {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 13px 2px;
    }

    .brand-card:first-child {
        border-top-width: 1.5px;
    }
}
