/* ============================================
   Ark Self Storage - Clean Rebuild
   Colors: Navy #091958, Red #c41e3a
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; color: #333; line-height: 1.6; }
body { background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   HEADER
   ============================================ */

/* --- Top Utility Bar --- */
.utility-bar {
    background: #091958;
    padding: 10px 0;
}
.utility-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}
.utility-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.utility-btn:hover {
    background: rgba(255,255,255,0.15);
}
.utility-btn--primary {
    background: #c41e3a;
    border-color: #c41e3a;
}
.utility-btn--primary:hover {
    background: #a01830;
}

/* --- Logo Bar --- */
.logo-bar {
    background: #fff;
    padding: 15px 0;
}
.logo-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.logo-bar__logo video,
.logo-bar__logo img {
    width: 230px;
    height: auto;
}
.logo-bar__promo {
    text-align: right;
    font-size: 1.1em;
    color: #333;
}
.promo-highlight {
    color: #c41e3a;
    font-weight: 800;
    font-size: 1.3em;
}
.promo-disclaimer {
    display: block;
    font-size: 0.7em;
    color: #888;
    margin-top: 3px;
}

/* --- Desktop Navigation --- */
.main-nav {
    background: #091958;
    position: relative;
    z-index: 100;
}
.main-nav__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.main-nav__item {
    position: relative;
    flex: 1;
    text-align: center;
}
.main-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}
.main-nav__link:hover,
.main-nav__item:hover > .main-nav__link {
    background: rgba(255,255,255,0.15);
}
/* Dropdown arrow */
.main-nav__item--has-children > .main-nav__link::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 8px;
    font-size: 0.85em;
}
/* Dropdown menu */
.main-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    min-width: 260px;
    background: #091958;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
}
.main-nav__item:hover > .main-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.main-nav__dropdown a {
    display: block;
    padding: 12px 22px;
    color: #fff;
    font-size: 1.05em;
    font-weight: 500;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.main-nav__dropdown a:last-child {
    border-bottom: none;
}
.main-nav__dropdown a:hover {
    background: #FE6721;
}
/* Dropdown sub-label & sub-links (Savannah silo) */
.main-nav__sub-label {
    padding: 10px 22px 4px;
    font-size: 0.75em;
    font-weight: 700;
    color: #FE6721;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: none;
}
.main-nav__dropdown a.main-nav__sub-link {
    padding-left: 34px;
    font-size: 0.9em;
    color: rgba(255,255,255,0.8);
}
.main-nav__dropdown a.main-nav__sub-link:hover {
    color: #fff;
    background: #FE6721;
}
.main-nav__divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 6px 0;
}

/* --- Mobile Header --- */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fff;
}
.mobile-header__logo video,
.mobile-header__logo img {
    width: 140px;
    height: auto;
}
.mobile-header__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #091958;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
}

/* --- Mobile Menu (slide-in) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
}
.mobile-menu.open {
    right: 0;
}
.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #091958;
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
}
.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8em;
    cursor: pointer;
    line-height: 1;
}
.mobile-menu__list > li > a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}
.mobile-menu__list > li > a:hover {
    background: #f5f5f5;
}
/* Mobile submenu toggle */
.mobile-menu__has-children {
    position: relative;
}
.mobile-menu__has-children > a {
    padding-right: 50px;
}
.mobile-submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid #eee;
    cursor: pointer;
    color: #666;
    transition: transform 0.2s;
}
.mobile-submenu-toggle.open {
    transform: rotate(180deg);
}
.mobile-submenu {
    display: none;
    background: #f8f8f8;
}
.mobile-submenu.open {
    display: block;
}
.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 35px;
    color: #555;
    font-size: 0.95em;
    border-bottom: 1px solid #eee;
}
.mobile-submenu a:hover {
    background: #eee;
    color: #091958;
}
/* Mobile submenu sub-label & sub-links (Savannah silo) */
.mobile-submenu__label {
    padding: 8px 20px 4px 35px;
    font-size: 0.75em;
    font-weight: 700;
    color: #FE6721;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mobile-submenu a.mobile-submenu__sub-link {
    padding-left: 50px;
    font-size: 0.9em;
    color: #777;
}
.mobile-submenu__divider {
    height: 1px;
    background: #ddd;
    margin: 4px 20px;
}
/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Location Modal --- */
.location-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.location-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.location-modal {
    background: #fff;
    border-radius: 10px;
    padding: 35px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
}
.location-modal-overlay.active .location-modal {
    transform: scale(1);
}
.location-modal__close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8em;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.location-modal__close:hover {
    color: #333;
}
.location-modal__title {
    margin: 0 0 20px;
    color: #091958;
    font-size: 1.5em;
    text-align: center;
}
.location-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.location-modal__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #333;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
.location-modal__item:hover {
    background: #091958;
    color: #fff;
}
.location-modal__item i {
    color: #c41e3a;
}
.location-modal__item:hover i {
    color: #fff;
}
.location-modal__footer {
    text-align: center;
    margin-top: 20px;
}
.location-modal__footer a {
    color: #c41e3a;
    font-weight: 600;
}
.location-modal__footer a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #091958;
    color: #fff;
}

/* --- Main Footer --- */
.footer-main {
    padding: 50px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-brand {
    text-align: left;
}
.footer-logo img {
    max-width: 280px;
    margin-bottom: 15px;
}
.footer-tagline {
    color: rgba(255,255,255,0.8);
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-heading {
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
    display: inline-block;
}

/* Locations grid */
.footer-locations {
    text-align: center;
}
.footer-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
}
.footer-location-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.95em;
    border-radius: 5px;
    background: rgba(255,255,255,0.05);
    transition: background 0.2s, transform 0.2s;
}
.footer-location-link:hover {
    background: #c41e3a;
    transform: translateY(-2px);
}
.footer-location-link i {
    color: #c41e3a;
    font-size: 0.9em;
}
.footer-location-link:hover i {
    color: #fff;
}
.footer-cta {
    margin-top: 25px;
}
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #c41e3a;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.footer-cta-btn:hover {
    background: #a01830;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196,30,58,0.4);
}

/* Quick links */
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95em;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* --- Bottom Footer --- */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}
.footer-copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}
.footer-copyright a:hover {
    color: #fff;
}
.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85em;
    transition: color 0.2s;
}
.footer-legal-links a:hover {
    color: #fff;
}

/* ============================================
   PAGE CONTENT
   ============================================ */

/* --- Hero Section --- */
.hero {
    position: relative;
    overflow: hidden;
    max-height: 450px;
}
.hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    background: #f5f5f5;
    padding: 12px 0;
    font-size: 0.9em;
    border-bottom: 1px solid #e0e0e0;
}
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    color: #555;
}
.breadcrumbs__item a {
    color: #091958;
    font-weight: 500;
    transition: color 0.2s;
}
.breadcrumbs__item a:hover {
    color: #c41e3a;
    text-decoration: underline;
}
.breadcrumbs__item + .breadcrumbs__item::before {
    content: "›";
    margin-right: 6px;
    color: #999;
    font-size: 1.1em;
    font-weight: 300;
}
.breadcrumbs__item:last-child {
    color: #333;
    font-weight: 600;
}

/* --- CTA Banner --- */
.cta-banner {
    background: #FE6721;
    padding: 30px 0;
    text-align: center;
}
.cta-banner__tagline {
    color: #fff;
    font-size: 1.6em;
    font-weight: 800;
    margin-bottom: 25px;
}
.cta-banner__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 50px;
    background: #fff;
    color: #091958;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 320px;
    justify-content: center;
    flex: 1;
    max-width: 480px;
}
.cta-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.cta-banner__btn i {
    font-size: 2.4em;
    color: #000;
}
.cta-banner__btn-title {
    font-size: 1.35em;
    font-weight: 700;
}
.cta-banner__btn-desc {
    font-size: 1em;
    color: #555;
    font-weight: 400;
}

/* ============================================
   LOCATION PAGES
   ============================================ */

/* --- Alert Box --- */
.alert-box {
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 15px 20px;
    background: #fff3cd;
    border-left: 4px solid #c41e3a;
    border-radius: 0 6px 6px 0;
    font-size: 0.95em;
    color: #333;
}
.alert-box i {
    margin-right: 8px;
    color: #c41e3a;
}

/* --- Pricing Table --- */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}
.pricing-table thead {
    background: #091958;
    color: #fff;
}
.pricing-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95em;
}
.pricing-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    font-size: 0.95em;
}
.pricing-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}
.pricing-table tbody tr:hover {
    background: #eef1f7;
}
.pricing-table .price {
    font-weight: 700;
    color: #091958;
}
.pricing-table .price-original {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}
.pricing-table .price-sale {
    color: #c41e3a;
    font-weight: 700;
}

/* --- Vehicle Parking Info Box --- */
.info-box {
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 20px;
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    border-radius: 0 6px 6px 0;
    font-size: 0.95em;
    color: #333;
    line-height: 1.7;
}
.info-box strong {
    color: #2e7d32;
}
.info-box i {
    margin-right: 8px;
    color: #2e7d32;
}

/* --- SiteLink Embed --- */
.sitelink-section {
    margin: 40px 0;
}
.sitelink-section h2 {
    color: #091958;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}
.sitelink-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background: #fff;
}
.sitelink-frame iframe {
    width: 100%;
    height: 800px;
    border: 0;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.feature-card {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}
.feature-card__icon {
    font-size: 1.5em;
    color: #c41e3a;
    margin-bottom: 8px;
}
.feature-card__title {
    font-weight: 700;
    color: #091958;
    margin-bottom: 5px;
}
.feature-card__desc {
    font-size: 0.9em;
    color: #666;
}
a.feature-card--link {
    display: block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid transparent;
}
a.feature-card--link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: #c41e3a;
}

/* --- Map Section --- */
.map-section {
    text-align: center;
    margin: 40px 0;
}
.map-section iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border: 0;
    border-radius: 8px;
}

/* --- Location CTA --- */
.location-cta {
    background: #091958;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    margin-top: 40px;
    margin-bottom: 0;
}
.location-cta h2 {
    color: #fff !important;
    margin: 0 0 5px !important;
    font-size: 2.4em !important;
}
.location-cta .promo {
    color: #c41e3a;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
}
.location-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #FF6600;
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: background 0.2s, transform 0.2s;
}
.location-cta__phone:hover {
    background: #e55b00;
    transform: translateY(-2px);
}
.location-cta__details {
    font-size: 0.95em;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}
.location-cta__facebook {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 24px;
    background: #1877F2;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s;
}
.location-cta__facebook:hover {
    background: #1565C0;
    color: #fff;
    transform: translateY(-2px);
}

/* --- Page Content Area --- */
.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.page-content--wide {
    max-width: 1200px;
}
.page-content h1 {
    color: #091958;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.page-featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}
.page-content h3 {
    color: #091958;
    font-size: 1.2em;
    font-weight: 600;
    margin: 20px 0 10px;
}
.page-content ul, .page-content ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    padding-left: 25px;
    list-style: disc;
}
.page-content ol {
    list-style: decimal;
}
.page-content li {
    margin-bottom: 8px;
}

/* --- Two Column List --- */
.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 40px;
    list-style: disc;
    padding-left: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* --- Location Cards Grid --- */
.location-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0;
}
.location-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.location-card__name {
    color: #091958;
    font-size: 1.3em;
    font-weight: 700;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}
.location-card__address {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 15px;
}
.location-card__phone,
.location-card__email {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 8px;
}
.location-card__phone i,
.location-card__email i {
    color: #c41e3a;
    width: 18px;
    text-align: center;
    margin-right: 8px;
}
.location-card__phone a {
    color: #091958;
    font-weight: 600;
    transition: color 0.2s;
}
.location-card__phone a:hover {
    color: #c41e3a;
}
.location-card__email a {
    color: #666;
    font-size: 0.95em;
    transition: color 0.2s;
}
.location-card__email a:hover {
    color: #c41e3a;
}
.location-card__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 18px;
}
.location-card__btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: 600;
    transition: background 0.2s;
    background: #091958;
    color: #fff;
}
.location-card__btn:hover {
    background: #0d2470;
}
.location-card__btn--pay {
    background: #c41e3a;
    color: #fff;
}
.location-card__btn--pay:hover {
    background: #a01830;
}

/* --- Contact Form --- */
/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: start;
}
.contact-locations {
    display: flex;
    flex-direction: column;
}
.contact-location {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
.contact-location:first-child {
    padding-top: 0;
}
.contact-location:last-child {
    border-bottom: none;
}
.contact-location h3 {
    color: #091958;
    margin: 0 0 6px;
    font-size: 1.15em;
}
.contact-location p {
    margin: 4px 0;
    font-size: 0.92em;
    color: #555;
    line-height: 1.5;
}
.contact-location a {
    color: #091958;
    font-weight: 500;
}
.contact-location a:hover {
    color: #c41e3a;
}
.contact-location .fa {
    width: 18px;
    color: #091958;
}

/* Contact form */
.contact-form-wrap h2 {
    color: #091958;
    font-size: 1.5em;
    margin: 0 0 20px;
}
.contact-form {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px 30px;
    border-top: 3px solid #091958;
}
.contact-form__field {
    margin-bottom: 18px;
}
.contact-form__field label {
    display: block;
    font-weight: 600;
    color: #091958;
    margin-bottom: 5px;
    font-size: 0.95em;
}
.contact-form__field .required {
    color: #c41e3a;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: #091958;
    box-shadow: 0 0 0 2px rgba(9,25,88,0.1);
}
.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: #091958;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}
.contact-form__submit:hover {
    background: #0d2470;
}

/* --- Reviews --- */
.reviews-grid {
    margin-top: 25px;
}
.review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.review-card__stars {
    color: #FE6721;
    font-size: 1.2em;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-card__text {
    color: #333;
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}
.review-card__author {
    color: #091958;
    font-weight: 600;
    font-size: 1.1em;
}

/* --- Calculator --- */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 30px;
}
.calc-category {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border-top: 3px solid #091958;
}
.calc-category h3 {
    color: #091958;
    font-size: 1.1em;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41e3a;
}
.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95em;
    color: #333;
}
.calc-item:last-child {
    border-bottom: none;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 5px;
}
.qty-control button {
    width: 30px;
    height: 30px;
    border: 1px solid #091958;
    background: #fff;
    color: #091958;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 4px;
}
.qty-control button:hover {
    background: #091958;
    color: #fff;
}
.qty-control input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    font-size: 1em;
}

/* Calculator results banner */
.calc-results {
    background: linear-gradient(135deg, #091958 0%, #1a3a8f 100%);
    color: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 20px;
}
.calc-results h2 {
    color: #fff !important;
    font-size: 1.8em !important;
    margin-bottom: 25px;
}
.calc-results__numbers {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.calc-results__stat {
    min-width: 160px;
}
.calc-results__value {
    font-size: 3em;
    font-weight: bold;
    color: #d4af37;
}
.calc-results__label {
    font-size: 0.95em;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}
.calc-results__desc {
    color: #fff !important;
    font-size: 1.05em;
    margin-bottom: 20px;
    opacity: 0.95;
}
.calc-results__cta {
    display: inline-block;
    background: #d4af37;
    color: #091958;
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.2s;
}
.calc-results__cta:hover {
    background: #c4a030;
}

/* Reset button */
.calc-reset {
    text-align: center;
    margin-bottom: 40px;
}
.calc-reset button {
    display: inline-block;
    padding: 14px 40px;
    background: #c41e3a;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.calc-reset button:hover {
    background: #a31830;
}

/* Size guide cards */
.size-guide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 25px 0 40px;
}
.size-guide__card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border-top: 3px solid #091958;
}
.size-guide__card h3 {
    color: #091958;
    font-size: 1.1em;
    margin: 0 0 10px;
}
.size-guide__card p {
    font-size: 0.9em;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Tips banner - full width */
.tips-banner {
    background: linear-gradient(135deg, #091958 0%, #1a3a8f 100%);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: 40px 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.tips-banner__item {
    max-width: 900px;
    margin: 0 auto 20px;
}
.tips-banner__item:last-child {
    margin-bottom: 0;
}
.tips-banner__item h4 {
    color: #d4af37;
    font-size: 1.1em;
    margin: 0 0 6px;
}
.tips-banner__item p {
    color: #fff !important;
    font-size: 0.95em;
    margin: 0;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    margin-bottom: 30px;
}
.faq-item {
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item summary {
    padding: 16px 30px 16px 0;
    font-size: 1.05em;
    font-weight: 700;
    color: #091958;
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    font-weight: 400;
    color: #091958;
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '\2212';
}
.faq-item summary:hover {
    color: #c41e3a;
}
.faq-item summary:hover::after {
    color: #c41e3a;
}
.faq-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0 0 16px;
    padding-right: 30px;
}
.faq-item h3 {
    color: #091958;
    font-size: 1.05em;
    margin: 0 0 8px;
}

/* --- Legal Pages --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.legal-content h1 {
    color: #091958;
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
}
.legal-content .last-updated {
    text-align: center;
    color: #888;
    font-size: 0.9em;
    margin-bottom: 30px;
}
.legal-content h2 {
    color: #091958;
    font-size: 1.3em;
    margin: 30px 0 10px;
}
.legal-content h3 {
    color: #091958;
    font-size: 1.1em;
    margin: 20px 0 8px;
}
.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}
.legal-content ul {
    color: #555;
    line-height: 1.8;
    padding-left: 25px;
    margin-bottom: 15px;
}
.legal-content li {
    margin-bottom: 5px;
}

.page-content h2 {
    color: #091958;
    font-size: 1.5em;
    font-weight: 600;
    margin: 30px 0 15px;
}
.page-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-logo img {
        margin: 0 auto 15px;
    }
    .footer-tagline {
        max-width: 500px;
        margin: 0 auto;
    }
    .footer-locations {
        grid-column: 1 / -1;
    }
    .footer-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .size-guide {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Header: swap desktop for mobile */
    .logo-bar,
    .main-nav {
        display: none;
    }
    .mobile-header {
        display: flex;
    }

    /* Logo bar stacking */
    .logo-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .logo-bar__promo {
        text-align: center;
    }

    /* Hero */
    .hero {
        max-height: 250px;
    }

    /* CTA banner */
    .cta-banner__tagline {
        font-size: 1.25em;
    }
    .cta-banner__buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-banner__btn {
        width: 100%;
        max-width: 480px;
        min-width: unset;
        padding: 18px 25px;
    }

    /* Page content */
    .page-content {
        padding: 30px 15px 40px;
    }
    .page-content h1 {
        font-size: 1.7em;
    }
    .page-content h2 {
        font-size: 1.3em;
    }

    /* Location pages */
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sitelink-frame iframe {
        height: 600px;
    }
    .map-section iframe {
        height: 300px;
    }
    .location-cta {
        margin-top: 30px;
    }
    .location-cta h2 {
        font-size: 1.8em !important;
    }
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .size-guide {
        grid-template-columns: 1fr;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 10px 12px;
        font-size: 0.9em;
    }

    /* Footer */
    .footer-main {
        padding: 40px 15px 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .footer-brand {
        padding-bottom: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-links {
        text-align: center;
    }
    .footer-heading {
        text-align: center;
    }
    .footer-locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .footer-location-link {
        padding: 12px 10px;
        font-size: 0.9em;
        min-height: 44px;
    }
    .footer-cta-btn {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 14px 20px;
    }
    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px 20px;
    }
    .footer-links a {
        padding: 8px 5px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .footer-location-link {
        padding: 10px 8px;
        font-size: 0.85em;
    }
    .footer-logo img {
        max-width: 200px;
    }
    .footer-cta-btn {
        max-width: 100%;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
    .location-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PHOTO GALLERY & LIGHTBOX
   ============================================ */

/* --- Gallery Grid --- */
.gallery {
    margin: 20px 0 40px;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gallery__item {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.gallery__item:hover img {
    transform: scale(1.08);
}

/* --- Lightbox Overlay --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox__content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
}
.lightbox__caption {
    color: #ddd;
    font-size: 0.95em;
    text-align: center;
    margin-top: 12px;
    padding: 0 20px;
}
.lightbox__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5em;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: color 0.2s;
}
.lightbox__close:hover {
    color: #c41e3a;
}
.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 2.5em;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s;
    z-index: 10001;
}
.lightbox__prev { left: 15px; }
.lightbox__next { right: 15px; }
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255,255,255,0.25);
}

/* --- Gallery Responsive --- */
@media (max-width: 992px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lightbox__prev,
    .lightbox__next {
        font-size: 1.8em;
        padding: 6px 12px;
    }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }
}
@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

/* ============================================
   BLOG
   ============================================ */

/* --- Blog Search --- */
.blog-search {
    max-width: 600px;
    margin: 0 auto 30px;
}
.blog-search__form {
    display: flex;
    gap: 0;
}
.blog-search__form--sidebar .blog-search__input {
    font-size: 0.9em;
}
.blog-search__input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.2s;
}
.blog-search__input:focus {
    border-color: #091958;
}
.blog-search__btn {
    padding: 12px 20px;
    background: #091958;
    color: #fff;
    border: 2px solid #091958;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.2s;
}
.blog-search__btn:hover {
    background: #0d2470;
}
.blog-search__status {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* --- Blog Card Grid --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.blog-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}
.blog-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card__category {
    display: inline-block;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c41e3a;
    margin-bottom: 8px;
}
.blog-card__title {
    font-size: 1.15em;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #091958;
}
.blog-card__title a {
    color: #091958;
    transition: color 0.2s;
}
.blog-card__title a:hover {
    color: #c41e3a;
}
.blog-card__excerpt {
    font-size: 0.9em;
    color: #555;
    line-height: 1.55;
    margin-bottom: 15px;
    flex: 1;
}
.blog-card__meta {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 10px;
}
.blog-card__readmore {
    font-size: 0.9em;
    font-weight: 600;
    color: #091958;
    transition: color 0.2s;
}
.blog-card__readmore:hover {
    color: #c41e3a;
}

/* --- Blog Pagination --- */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 30px 0 40px;
}
.blog-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    color: #091958;
    transition: all 0.2s;
}
.blog-pagination__link:hover {
    border-color: #091958;
    background: #091958;
    color: #fff;
}
.blog-pagination__link--active {
    background: #091958;
    border-color: #091958;
    color: #fff;
}

/* --- Blog Layout (Article + Sidebar) --- */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 50px;
}

/* --- Blog Article --- */
.blog-article {
    min-width: 0;
}
.blog-article__header {
    margin-bottom: 25px;
}
.blog-article__header h1 {
    font-size: 2em;
    line-height: 1.25;
    color: #091958;
    margin: 10px 0 12px;
}
.blog-article__meta {
    display: flex;
    gap: 20px;
    font-size: 0.9em;
    color: #777;
}
.blog-article__featured-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}
.blog-article__content {
    font-size: 1.05em;
    line-height: 1.75;
    color: #333;
}
.blog-article__content h2 {
    font-size: 1.5em;
    color: #091958;
    margin: 35px 0 15px;
}
.blog-article__content h3 {
    font-size: 1.2em;
    color: #091958;
    margin: 25px 0 10px;
}
.blog-article__content p {
    margin-bottom: 18px;
}
.blog-article__content ul,
.blog-article__content ol {
    margin: 0 0 18px 25px;
}
.blog-article__content ul {
    list-style: disc;
}
.blog-article__content ol {
    list-style: decimal;
}
.blog-article__content li {
    margin-bottom: 8px;
}
.blog-article__content a {
    color: #091958;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}
.blog-article__content a:hover {
    color: #c41e3a;
}

/* --- Blog Post Navigation --- */
.blog-postnav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}
.blog-postnav__link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 48%;
    transition: color 0.2s;
}
.blog-postnav__link:hover {
    color: #c41e3a;
}
.blog-postnav__link--next {
    text-align: right;
    margin-left: auto;
}
.blog-postnav__label {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}
.blog-postnav__title {
    font-size: 1em;
    font-weight: 600;
    color: #091958;
}
.blog-postnav__link:hover .blog-postnav__title {
    color: #c41e3a;
}

/* --- Blog Sidebar --- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.blog-sidebar__widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}
.blog-sidebar__heading {
    font-size: 1.1em;
    color: #091958;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #091958;
}
.blog-sidebar__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0;
}
.blog-sidebar__list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.blog-sidebar__list li:last-child {
    border-bottom: none;
}
.blog-sidebar__list a {
    color: #091958;
    font-weight: 600;
    font-size: 0.9em;
    transition: color 0.2s;
}
.blog-sidebar__list a:hover {
    color: #c41e3a;
}
.blog-sidebar__list time {
    display: block;
    font-size: 0.8em;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}

/* --- Sidebar CTA Widget --- */
.blog-sidebar__widget--cta {
    background: #091958;
    color: #fff;
    text-align: center;
}
.blog-sidebar__widget--cta .blog-sidebar__heading {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.3);
}
.blog-sidebar__widget--cta p {
    color: #fff !important;
    margin-bottom: 15px;
    font-size: 0.95em;
}
.blog-sidebar__cta-btn {
    display: inline-block;
    background: #c41e3a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95em;
    transition: background 0.2s;
}
.blog-sidebar__cta-btn:hover {
    background: #a81832;
}

/* --- Blog Responsive --- */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .blog-sidebar__widget {
        flex: 1;
        min-width: 250px;
    }
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-article__header h1 {
        font-size: 1.6em;
    }
    .blog-postnav {
        flex-direction: column;
    }
    .blog-postnav__link {
        max-width: 100%;
    }
    .blog-postnav__link--next {
        text-align: left;
    }
    .blog-sidebar {
        flex-direction: column;
    }
    .blog-sidebar__widget {
        min-width: 100%;
    }
}
@media (max-width: 480px) {
    .blog-card__body {
        padding: 15px;
    }
    .blog-card__title {
        font-size: 1.05em;
    }
    .blog-pagination__link {
        min-width: 35px;
        height: 35px;
        font-size: 0.85em;
    }
}
