/*
Theme Name: Nomad Blog
Theme URI: https://example.com
Author: Votre Nom
Author URI: https://example.com
Description: Thème blog voyage inspiré du template Nomad – navy, teal, moderne.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nomadblog
Tags: blog, travel, modern, responsive
*/

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

:root {
    --color-navy:        #0d2d42;
    --color-navy-h:      #0a2233;
    --color-teal:        #2ab5b5;
    --color-teal-h:      #1f9999;
    --color-teal-light:  #e8f7f7;
    --color-bg:          #ffffff;
    --color-bg-alt:      #f0f2f5;
    --color-surface:     #ffffff;
    --color-border:      #e2e8f0;
    --color-text:        #0d2d42;
    --color-muted:       #64748b;
    --color-tag-bg:      #0d2d42;
    --color-tag-text:    #ffffff;

    --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

    --radius:    0.5rem;
    --radius-lg: 1.25rem;
    --shadow:    0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,.12);

    --max-width:      740px;
    --max-width-wide: 1200px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

a:hover {
    text-decoration: underline;
}

/* ================================
   LAYOUT
================================ */
.container {
    width: 100%;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: var(--max-width);
}

main {
    flex: 1;
}

/* ================================
   HEADER & NAV
================================ */
.site-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1.5rem;
}

/* Logo */
.site-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.site-title:hover {
    text-decoration: none;
    color: var(--color-teal);
}

/* Logo image badge (si utilisé) */
.site-logo img {
    height: 52px;
    width: auto;
}

/* Navigation */
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.1rem;
    align-items: center;
}

.site-nav a {
    color: var(--color-teal);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius);
    transition: background 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
    color: var(--color-navy);
    text-decoration: none;
}

/* Bouton Subscribe */
.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-navy);
    color: #fff !important;
    border: none;
    border-radius: var(--radius);
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.btn-subscribe:hover {
    background: var(--color-navy-h);
    text-decoration: none;
    color: #fff !important;
}

/* Icône search dans le header */
.header-search-btn {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-muted);
    transition: border-color 0.15s;
    flex-shrink: 0;
}

.header-search-btn:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

/* Burger mobile */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-navy);
}

.hero__text {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Globe décoratif (SVG ou img) */
.hero__deco {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 130px;
    opacity: 0.75;
    pointer-events: none;
}

/* ================================
   SECTION LABELS (FEATURED ARTICLES, etc.)
================================ */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 0.5rem;
}

/* Flèche décorative sous le label */
.section-label-wrap {
    margin-bottom: 2rem;
}

.section-label-wrap .arrow-deco {
    display: block;
    color: var(--color-teal);
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.2rem;
}

/* ================================
   FEATURED ARTICLE (banner pleine largeur)
================================ */
.featured-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 0;
}

.featured-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55);
}

.featured-banner__content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.featured-banner__tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.featured-banner__title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 750px;
    margin: 0 auto;
}

/* ================================
   DESTINATIONS GRID
================================ */
.destinations {
    padding: 4rem 0;
}

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card__label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #fff;
    color: var(--color-navy);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

/* Icône flottante au-dessus de la carte (2e rangée) */
.destination-card__icon {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--color-teal);
    z-index: 2;
}

/* Wrapper pour la 2e rangée avec icônes */
.destination-row--icons {
    padding-top: 1.5rem;
}

/* ================================
   TAGS / CATEGORIES
================================ */
.tag {
    display: inline-block;
    background: var(--color-tag-bg);
    color: var(--color-tag-text);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius);
}

.tag:hover {
    background: var(--color-teal);
    color: #fff;
    text-decoration: none;
}

/* ================================
   BLOG ARTICLES GRID (Latest Articles)
================================ */
.blog-section {
    background: var(--color-bg-alt);
    padding: 4rem 0;
}

.blog-section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}

.blog-section__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-navy);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Carte article horizontale */
.post-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 200px 1fr;
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.post-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.post-card__image {
    overflow: hidden;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.post-card__body {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

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

.post-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-navy);
    letter-spacing: -0.01em;
}

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

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

.post-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: auto;
}

/* ================================
   BOUTON GÉNÉRIQUE
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-navy);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.65rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.btn:hover {
    background: var(--color-navy-h);
    text-decoration: none;
    color: #fff;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

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

/* ================================
   PAGINATION
================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    transition: background 0.15s, color 0.15s;
}

.pagination a:hover {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
    text-decoration: none;
}

.pagination .current {
    background: var(--color-navy);
    color: #fff;
    border-color: var(--color-navy);
}

.pagination .dots {
    border: none;
    background: none;
    color: var(--color-muted);
    width: auto;
}

/* ================================
   ARTICLE SEUL (single.php)
================================ */
.post-single {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: var(--max-width);
    margin: 3rem auto;
}

.post-single__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.post-single__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-single__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.post-single__content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
}

.post-single__content h2,
.post-single__content h3,
.post-single__content h4 {
    font-weight: 800;
    margin: 2rem 0 1rem;
    color: var(--color-navy);
    letter-spacing: -0.01em;
}

.post-single__content h2 { font-size: 1.5rem; }
.post-single__content h3 { font-size: 1.25rem; }

.post-single__content p { margin-bottom: 1.25rem; }

.post-single__content ul,
.post-single__content ol {
    margin: 0 0 1.25rem 1.5rem;
}

.post-single__content blockquote {
    border-left: 4px solid var(--color-teal);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: var(--color-teal-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--color-muted);
    font-style: italic;
}

.post-single__content code {
    background: var(--color-bg-alt);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Cascadia Code', 'Fira Code', monospace;
}

.post-single__content pre {
    background: var(--color-navy);
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--radius);
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.post-single__content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.post-single__content img {
    border-radius: var(--radius-lg);
    margin: 1.5rem auto;
}

.post-single__tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Navigation article précédent/suivant */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.post-navigation a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: var(--color-navy);
    font-size: 0.9rem;
    transition: border-color 0.15s;
}

.post-navigation a:hover {
    border-color: var(--color-teal);
    text-decoration: none;
}

.post-navigation .nav-prev { text-align: left; }
.post-navigation .nav-next { text-align: right; }

.post-navigation .nav-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   COMMENTAIRES
================================ */
.comments-section {
    margin-top: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.comments-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
}

.comment {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}

.comment:last-child {
    border-bottom: none;
}

.comment__author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-navy);
}

.comment__date {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.comment__content p {
    font-size: 0.95rem;
}

.comment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-muted);
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.6rem 0.85rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: var(--color-bg-alt);
    color: var(--color-text);
    transition: border-color 0.15s;
    margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(42,181,181,0.15);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ================================
   PAGES (À propos, Contact)
================================ */
.page-single {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    max-width: var(--max-width);
    margin: 3rem auto;
}

.page-single__title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--color-navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.page-single__content {
    font-size: 1rem;
    line-height: 1.8;
}

.page-single__content h2,
.page-single__content h3 {
    font-weight: 700;
    color: var(--color-navy);
    margin: 1.75rem 0 0.75rem;
}

.page-single__content h2 { font-size: 1.4rem; }
.page-single__content h3 { font-size: 1.15rem; }
.page-single__content p  { margin-bottom: 1.1rem; }

/* Formulaire contact */
.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    background: var(--color-bg-alt);
    color: var(--color-text);
    transition: border-color 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(42,181,181,0.15);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
}

.contact-alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.contact-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.required {
    color: #ef4444;
    margin-left: 0.2rem;
}

.form-group--submit {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* ================================
   PAGE 404
================================ */
.error-404 {
    text-align: center;
    padding: 5rem 1.5rem;
}

.error-404 .error-code {
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-border);
    line-height: 1;
    letter-spacing: -0.04em;
}

.error-404 h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.error-404 p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

/* ================================
   PAGE TITLE BAR
================================ */
.page-title-bar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}

.page-title-bar h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-navy);
}

.page-title-bar p {
    color: var(--color-muted);
    margin-top: 0.4rem;
    font-size: 0.95rem;
}

/* ================================
   SIDEBAR
================================ */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0;
}

.widget {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-teal);
    display: inline-block;
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background: var(--color-navy);
    color: #fff;
    padding: 2.5rem 0;
    margin-top: auto;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.15s;
}

.footer-nav a:hover {
    color: var(--color-teal);
    text-decoration: none;
}

/* ================================
   READ MORE LINK
================================ */
.read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.15s;
}

.read-more:hover::after {
    transform: translateX(3px);
}

.read-more:hover {
    text-decoration: none;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .destinations__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .layout-with-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header .container {
        position: relative;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-md);
    }

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

    .site-nav ul {
        flex-direction: column;
        gap: 0.25rem;
    }

    .site-nav a {
        display: block;
        padding: 0.65rem 0.75rem;
    }

    /* Hero mobile */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero__image {
        order: -1;
    }

    .hero__title {
        font-size: 2rem;
    }

    /* Blog grid mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Post card mobile : empilé */
    .post-card {
        grid-template-columns: 1fr;
    }

    .post-card__image {
        height: 200px;
    }

    /* Destinations mobile */
    .destinations__grid {
        grid-template-columns: 1fr;
    }

    .post-single,
    .page-single {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .post-single__title,
    .page-single__title {
        font-size: 1.5rem;
    }

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

    .site-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .form-group--submit {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-section__header {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .error-404 .error-code {
        font-size: 4rem;
    }

    .featured-banner {
        min-height: 300px;
    }
}
