/* ── GF6 Directory Frontend Styles ─────────────────────────────────────── */

/* Page wrapper - constrains all GF6 pages */
.gf6-single,
.gf6-archive,
.gf6-continents,
.gf6-continent-page,
.gf6-country-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    box-sizing: border-box;
}

/* Breadcrumb */
.gf6-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}
.gf6-breadcrumb a { color: #555; text-decoration: none; }
.gf6-breadcrumb a:hover { text-decoration: underline; }
.gf6-breadcrumb span { margin: 0 6px; }

/* Header */
.gf6-listing-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1a2a4a;
    color: #fff;
    padding: 24px 28px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.gf6-logo {
    width: 68px; height: 68px;
    background: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.gf6-logo img { width: 56px; height: 56px; object-fit: contain; }
.gf6-listing-title h1 { margin: 0 0 6px; font-size: 22px; color: #fff; }
.gf6-address-line { margin: 0 0 10px; opacity: .75; font-size: 14px; }
.gf6-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.gf6-tag {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Body layout */
.gf6-listing-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
}
@media (max-width: 768px) {
    .gf6-listing-body { grid-template-columns: 1fr; }
    .gf6-listing-sidebar { order: -1; }
}

/* About */
.gf6-about { margin-top: 20px; }
.gf6-about h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: 8px; }
.gf6-about p  { font-size: 15px; line-height: 1.65; color: #333; }

/* Sidebar cards */
.gf6-sidebar-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 16px;
}
.gf6-sidebar-card h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #999;
    margin: 0 0 14px;
}

/* Info table */
.gf6-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gf6-info-table td { padding: 5px 0; vertical-align: top; }
.gf6-info-table td:first-child { color: #888; width: 70px; }
.gf6-info-table a { color: #1a6fd4; text-decoration: none; }
.gf6-info-table a:hover { text-decoration: underline; }

/* Hours table */
.gf6-hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gf6-hours-table td { padding: 5px 0; }
.gf6-hours-table td:first-child { color: #555; }
.gf6-hours-table td:last-child { text-align: right; font-weight: 500; }
.gf6-hours-table tr.today td { color: #1a6fd4; font-weight: 700; }

/* Directions button */
.gf6-directions-btn {
    display: block;
    text-align: center;
    background: #1a6fd4;
    color: #fff !important;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .2s;
}
.gf6-directions-btn:hover { background: #1558b0; }

/* Archive grid */
.gf6-archive h1 { margin-bottom: 8px; }
.gf6-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.gf6-listing-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s, border-color .15s;
}
.gf6-listing-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.1); border-color: #1a6fd4; }
.gf6-card-logo { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.gf6-card-body { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.gf6-card-body strong { font-size: 14px; }
.gf6-card-body span { color: #777; }

/* ── Continent / Country / City grids ──────────────────────────────────── */
.gf6-intro { color: #555; margin-bottom: 24px; font-size: 15px; }

.gf6-continent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.gf6-continent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 28px 16px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: box-shadow .15s, border-color .15s, transform .15s;
}
.gf6-continent-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    border-color: #1a6fd4;
    transform: translateY(-2px);
}
.gf6-continent-emoji { font-size: 40px; line-height: 1; }
.gf6-continent-card strong { font-size: 16px; }
.gf6-continent-card span { font-size: 13px; color: #888; }

/* Country grid */
.gf6-country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
}
.gf6-country-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .15s, border-color .15s;
}
.gf6-country-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,.08); border-color: #1a6fd4; }
.gf6-country-card strong { font-size: 14px; }
.gf6-country-card span { font-size: 12px; color: #888; background: #f5f5f5; padding: 2px 8px; border-radius: 10px; }

/* City grid */
.gf6-state-header {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    margin: 24px 0 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}
.gf6-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}
.gf6-city-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 10px 14px;
    text-decoration: none;
    color: inherit;
    font-size: 13px;
    transition: background .1s, border-color .1s;
}
.gf6-city-card:hover { background: #f0f7ff; border-color: #1a6fd4; }
.gf6-city-card strong { font-weight: 600; }
.gf6-city-card span { font-size: 11px; color: #999; }
