/* ==========================================================================
   SOS Nuisibles Paris — Blog theme
   Palette extraite des captures fournies (header + footer du site principal)
   ========================================================================== */

:root {
	/* Couleurs — prélevées directement sur les captures d'écran */
	--sosn-cream:        #F4F1E9; /* fond du header / des pages claires */
	--sosn-cream-2:      #EDEAE0; /* fond légèrement plus soutenu (cartes) */
	--sosn-forest:        #3C5948; /* vert principal — logo, liens, boutons */
	--sosn-forest-dark:   #2E3B31; /* vert foncé — fond du pictogramme, hover */
	--sosn-charcoal:      #171611; /* fond du footer (quasi noir chaud) */
	--sosn-charcoal-2:    #211F19; /* cartes / éléments sur fond sombre */
	--sosn-gold:          #BFA968; /* accent doré — badge, icônes, liens actifs */
	--sosn-gold-soft:     #D8C48F;
	--sosn-gray-muted:    #96968F; /* texte secondaire sur fond sombre */
	--sosn-gray-line:     #E4E0D4; /* séparateurs sur fond clair */
	--sosn-ink:           #23231F; /* texte principal sur fond clair */
	--sosn-white:         #FFFFFF;
	--sosn-whatsapp:      #25D366;

	/* Typographie */
	--font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	/* Layout */
	--sosn-container: 1200px;
	--sosn-header-h: 84px;
	--sosn-radius: 10px;
	--sosn-radius-lg: 16px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--sosn-ink);
	background: var(--sosn-cream);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a { color: var(--sosn-forest); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--sosn-forest-dark); }

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

h1, h2, h3, h4, h5 {
	font-family: var(--font-serif);
	color: var(--sosn-ink);
	line-height: 1.25;
	margin: 0 0 .5em;
	font-weight: 600;
}

p { margin: 0 0 1.1em; }

.sosn-container {
	max-width: var(--sosn-container);
	margin: 0 auto;
	padding: 0 24px;
}

.sosn-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 22px;
	border-radius: 8px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

.sosn-btn--primary {
	background: var(--sosn-forest);
	color: var(--sosn-white);
}
.sosn-btn--primary:hover { background: var(--sosn-forest-dark); color: var(--sosn-white); }

.sosn-btn--ghost {
	background: transparent;
	border-color: var(--sosn-forest);
	color: var(--sosn-forest);
}
.sosn-btn--ghost:hover { background: var(--sosn-forest); color: var(--sosn-white); }

.sosn-btn--gold {
	background: var(--sosn-gold);
	color: var(--sosn-charcoal);
}
.sosn-btn--gold:hover { background: var(--sosn-gold-soft); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0; overflow: hidden;
	clip: rect(0,0,0,0); border: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
.sosn-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--sosn-cream);
	border-bottom: 1px solid var(--sosn-gray-line);
}

.sosn-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--sosn-header-h);
	gap: 24px;
}

.sosn-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.sosn-logo-mark {
	width: 46px;
	height: 46px;
	border-radius: 9px;
	background: var(--sosn-forest-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}
.sosn-logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sosn-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.sosn-logo-title {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 21px;
	color: var(--sosn-forest);
	white-space: nowrap;
}
.sosn-logo-sub {
	font-family: var(--font-sans);
	font-size: 11px;
	letter-spacing: .14em;
	color: var(--sosn-gray-muted);
	font-weight: 600;
}

/* Nav */
.sosn-nav { flex: 1; display: flex; justify-content: center; }
.sosn-nav-list { display: flex; align-items: center; gap: 34px; }
.sosn-nav-list > li { position: relative; }
.sosn-nav-list > li > a {
	color: var(--sosn-forest);
	font-weight: 600;
	font-size: 15.5px;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 0;
}
.sosn-nav-list > li.current-menu-item > a,
.sosn-nav-list > li > a.is-active {
	color: var(--sosn-gold);
}
.sosn-caret { font-size: 11px; margin-top: 1px; }

.sosn-nav-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: var(--sosn-white);
	border: 1px solid var(--sosn-gray-line);
	border-radius: var(--sosn-radius);
	box-shadow: 0 16px 40px rgba(23,22,17,.12);
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.sosn-nav-list li.menu-item-has-children:hover .sub-menu,
.sosn-nav-list li.menu-item-has-children:focus-within .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.sosn-nav-list .sub-menu li a {
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	color: var(--sosn-ink);
	font-weight: 500;
	font-size: 14.5px;
}
.sosn-nav-list .sub-menu li a:hover { background: var(--sosn-cream-2); color: var(--sosn-forest); }

.sosn-header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.sosn-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
	color: var(--sosn-ink);
	white-space: nowrap;
}
.sosn-phone svg { flex-shrink: 0; }

.sosn-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}
.sosn-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--sosn-forest);
	margin: 5px 0;
	transition: transform .2s ease, opacity .2s ease;
}

/* ==========================================================================
   Page header / hero (intro du blog, archives, etc.)
   ========================================================================== */
.sosn-page-hero {
	padding: 64px 0 40px;
	border-bottom: 1px solid var(--sosn-gray-line);
}
.sosn-page-hero .sosn-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--sosn-gold);
	background: rgba(60,89,72,.08);
	border: 1px solid var(--sosn-gray-line);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.sosn-page-hero h1 {
	font-size: clamp(30px, 4vw, 44px);
	max-width: 760px;
}
.sosn-page-hero .sosn-lead {
	max-width: 640px;
	color: #4B4B45;
	font-size: 17px;
}

/* ==========================================================================
   Liste d'articles (index / archive / search)
   ========================================================================== */
.sosn-blog-main { padding: 48px 0 72px; }

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

.sosn-post-card {
	background: var(--sosn-white);
	border: 1px solid var(--sosn-gray-line);
	border-radius: var(--sosn-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease;
}
.sosn-post-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(23,22,17,.10);
}
.sosn-post-card__thumb {
	aspect-ratio: 16/10;
	background: var(--sosn-cream-2) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23EDEAE0"/></svg>') center/cover;
	overflow: hidden;
}
.sosn-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sosn-post-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.sosn-post-card__date {
	font-size: 13px;
	color: var(--sosn-gray-muted);
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.sosn-post-card__title {
	font-size: 20px;
	margin-bottom: 10px;
}
.sosn-post-card__title a { color: var(--sosn-ink); }
.sosn-post-card__title a:hover { color: var(--sosn-forest); }
.sosn-post-card__excerpt { color: #55554F; font-size: 14.5px; flex: 1; margin-bottom: 16px; }
.sosn-post-card__more { font-weight: 700; font-size: 14.5px; color: var(--sosn-forest); }
.sosn-post-card__more:hover { color: var(--sosn-forest-dark); }

/* Bandeau CTA en bas de liste d'articles (identique au bloc du site) */
.sosn-blog-cta {
	margin-top: 56px;
	background: var(--sosn-forest-dark);
	border-radius: var(--sosn-radius-lg);
	padding: 40px 44px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	color: var(--sosn-white);
}
.sosn-blog-cta h2, .sosn-blog-cta p { color: var(--sosn-white); }
.sosn-blog-cta h2 { font-size: 24px; margin-bottom: 6px; }
.sosn-blog-cta p { margin: 0; color: #D8D6CC; max-width: 480px; }
.sosn-blog-cta .sosn-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Pagination */
.sosn-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 48px;
	flex-wrap: wrap;
}
.sosn-pagination a, .sosn-pagination span {
	min-width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid var(--sosn-gray-line);
	color: var(--sosn-ink);
	font-weight: 600;
	font-size: 14px;
}
.sosn-pagination a:hover { background: var(--sosn-forest); color: var(--sosn-white); border-color: var(--sosn-forest); }
.sosn-pagination .current { background: var(--sosn-forest); color: var(--sosn-white); border-color: var(--sosn-forest); }

/* ==========================================================================
   Article seul
   ========================================================================== */
.sosn-single { padding: 52px 0 72px; }
.sosn-single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.sosn-single-layout.no-sidebar { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }

.sosn-breadcrumb { font-size: 13.5px; color: var(--sosn-gray-muted); margin-bottom: 20px; }
.sosn-breadcrumb a { color: var(--sosn-gray-muted); font-weight: 600; }
.sosn-breadcrumb a:hover { color: var(--sosn-forest); }

.sosn-article-header h1 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.sosn-article-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13.5px;
	color: var(--sosn-gray-muted);
	font-weight: 600;
	margin-bottom: 28px;
	flex-wrap: wrap;
}
.sosn-article-meta span { display: inline-flex; align-items: center; gap: 6px; }

.sosn-article-thumb {
	border-radius: var(--sosn-radius-lg);
	overflow: hidden;
	margin-bottom: 32px;
}

.sosn-article-content { font-size: 17px; color: #333330; }
.sosn-article-content h2 { font-size: 26px; margin-top: 1.6em; }
.sosn-article-content h3 { font-size: 21px; margin-top: 1.4em; }
.sosn-article-content a { text-decoration: underline; text-underline-offset: 2px; }
.sosn-article-content ul, .sosn-article-content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.sosn-article-content ul { list-style: disc; }
.sosn-article-content ol { list-style: decimal; }
.sosn-article-content blockquote {
	margin: 1.6em 0;
	padding: 18px 22px;
	border-left: 4px solid var(--sosn-gold);
	background: var(--sosn-cream-2);
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: #3f3f39;
}
.sosn-article-content img { border-radius: var(--sosn-radius); margin: 1.4em 0; }
.sosn-article-content figcaption { font-size: 13px; color: var(--sosn-gray-muted); text-align: center; margin-top: 6px; }
.sosn-article-content table { width: 100%; border-collapse: collapse; margin: 1.6em 0; }
.sosn-article-content table th, .sosn-article-content table td { border: 1px solid var(--sosn-gray-line); padding: 10px 12px; text-align: left; }
.sosn-article-content table th { background: var(--sosn-cream-2); }
.sosn-article-content code { background: var(--sosn-cream-2); padding: 2px 6px; border-radius: 4px; font-size: .92em; }

.sosn-tags { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.sosn-tags a {
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--sosn-cream-2);
	color: var(--sosn-ink);
}
.sosn-tags a:hover { background: var(--sosn-forest); color: var(--sosn-white); }

/* Inline CTA au fil de l'article */
.sosn-inline-cta {
	margin: 40px 0;
	background: var(--sosn-cream-2);
	border: 1px solid var(--sosn-gray-line);
	border-radius: var(--sosn-radius-lg);
	padding: 28px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.sosn-inline-cta p { margin: 0; font-weight: 600; color: var(--sosn-ink); }

/* Navigation prev/next */
.sosn-post-nav {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--sosn-gray-line);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.sosn-post-nav a { display: block; }
.sosn-post-nav .label { display: block; font-size: 12.5px; color: var(--sosn-gray-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.sosn-post-nav .title { font-family: var(--font-serif); font-size: 16px; color: var(--sosn-ink); }
.sosn-post-nav a:hover .title { color: var(--sosn-forest); }
.sosn-post-nav .nav-next { text-align: right; }

/* Auteur */
.sosn-author-box {
	margin-top: 40px;
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 22px;
	background: var(--sosn-cream-2);
	border-radius: var(--sosn-radius);
}
.sosn-author-box img { width: 56px; height: 56px; border-radius: 50%; }
.sosn-author-box .name { font-weight: 700; color: var(--sosn-ink); }
.sosn-author-box .role { font-size: 13px; color: var(--sosn-gray-muted); }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sosn-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sosn-widget {
	background: var(--sosn-white);
	border: 1px solid var(--sosn-gray-line);
	border-radius: var(--sosn-radius);
	padding: 22px;
}
.sosn-widget-title {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--sosn-forest);
	margin-bottom: 14px;
}
.sosn-widget-list li { padding: 7px 0; border-bottom: 1px solid var(--sosn-gray-line); font-size: 14.5px; }
.sosn-widget-list li:last-child { border-bottom: none; }
.sosn-widget-list a { color: var(--sosn-ink); font-weight: 500; }
.sosn-widget-list a:hover { color: var(--sosn-forest); }

.sosn-searchform { display: flex; gap: 8px; }
.sosn-searchform input[type="search"] {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid var(--sosn-gray-line);
	border-radius: 8px;
	font-family: var(--font-sans);
	font-size: 14px;
}
.sosn-searchform button {
	background: var(--sosn-forest);
	color: var(--sosn-white);
	border: none;
	border-radius: 8px;
	padding: 0 16px;
	cursor: pointer;
	font-weight: 700;
}
.sosn-searchform button:hover { background: var(--sosn-forest-dark); }

/* ==========================================================================
   Commentaires
   ========================================================================== */
.sosn-comments { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--sosn-gray-line); }
.sosn-comments-title { font-size: 22px; margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0 0 32px; padding: 0; }
.comment-list .comment { display: flex; gap: 14px; margin-bottom: 24px; }
.comment-list .avatar { border-radius: 50%; width: 48px; height: 48px; flex-shrink: 0; }
.comment-author { font-weight: 700; font-size: 14.5px; }
.comment-metadata { font-size: 12.5px; color: var(--sosn-gray-muted); margin-bottom: 8px; }
.comment-metadata a { color: var(--sosn-gray-muted); }
.comment-content p { font-size: 14.5px; margin-bottom: .6em; }
.comment-reply-link { font-size: 12.5px; font-weight: 700; color: var(--sosn-forest); }
.children { list-style: none; padding-left: 44px; margin-top: 20px; }

.comment-respond { background: var(--sosn-cream-2); border-radius: var(--sosn-radius); padding: 28px; }
.comment-reply-title { font-size: 19px; margin-bottom: 16px; }
.comment-form p { margin-bottom: 14px; }
.comment-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 11px 13px;
	border: 1px solid var(--sosn-gray-line);
	border-radius: 8px;
	font-family: var(--font-sans);
	font-size: 14.5px;
	background: var(--sosn-white);
}
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form .form-submit input {
	background: var(--sosn-forest);
	color: var(--sosn-white);
	border: none;
	padding: 12px 26px;
	border-radius: 8px;
	font-weight: 700;
	cursor: pointer;
}
.comment-form .form-submit input:hover { background: var(--sosn-forest-dark); }

/* ==========================================================================
   404 / recherche vide
   ========================================================================== */
.sosn-empty-state {
	text-align: center;
	padding: 90px 24px;
}
.sosn-empty-state .code { font-family: var(--font-serif); font-size: 90px; color: var(--sosn-gold); line-height: 1; margin-bottom: 8px; }
.sosn-empty-state h1 { font-size: 26px; margin-bottom: 12px; }
.sosn-empty-state p { color: #5b5b54; max-width: 460px; margin: 0 auto 26px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.sosn-footer { background: var(--sosn-charcoal); color: var(--sosn-gray-muted); padding: 64px 0 0; }
.sosn-footer a { color: var(--sosn-gray-muted); }
.sosn-footer a:hover { color: var(--sosn-white); }

.sosn-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 48px;
}

.sosn-footer-brand .sosn-logo-title { color: var(--sosn-white); font-size: 22px; }
.sosn-footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(191,169,104,.4);
	background: rgba(191,169,104,.08);
	color: var(--sosn-gold);
	font-size: 13px;
	font-weight: 700;
	padding: 7px 14px 7px 10px;
	border-radius: 999px;
	margin: 16px 0 18px;
}
.sosn-footer-brand p.desc { font-size: 14px; line-height: 1.7; max-width: 300px; margin-bottom: 18px; }
.sosn-footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.sosn-footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.sosn-footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--sosn-gold); }

.sosn-footer-col h4 {
	font-family: var(--font-sans);
	color: var(--sosn-white);
	font-size: 12.5px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.sosn-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.sosn-footer-col a { font-size: 14.5px; }

.sosn-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
}
.sosn-footer-legal-line { display: flex; gap: 18px; flex-wrap: wrap; color: #7A7A73; }
.sosn-footer-legal-line span { white-space: nowrap; }

/* Boutons flottants */
.sosn-float-whatsapp, .sosn-float-chat {
	position: fixed;
	bottom: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 26px rgba(0,0,0,.25);
	z-index: 90;
	color: var(--sosn-white);
}
.sosn-float-whatsapp { left: 24px; background: var(--sosn-whatsapp); }
.sosn-float-whatsapp:hover { color: var(--sosn-white); filter: brightness(1.06); }
.sosn-float-chat { right: 24px; background: var(--sosn-forest-dark); cursor: pointer; border: none; }
.sosn-float-chat:hover { background: var(--sosn-forest); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.sosn-post-grid { grid-template-columns: repeat(2, 1fr); }
	.sosn-single-layout { grid-template-columns: 1fr; }
	.sosn-sidebar { order: 2; flex-direction: row; flex-wrap: wrap; }
	.sosn-sidebar .sosn-widget { flex: 1 1 260px; }
	.sosn-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
	.sosn-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
	.sosn-nav {
		position: fixed;
		top: var(--sosn-header-h);
		left: 0; right: 0;
		bottom: 0;
		background: var(--sosn-cream);
		display: none;
		overflow-y: auto;
		padding: 20px 24px 40px;
		justify-content: flex-start;
	}
	.sosn-nav.is-open { display: block; }
	.sosn-nav-list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.sosn-nav-list > li { width: 100%; }
	.sosn-nav-list > li > a { padding: 14px 0; width: 100%; justify-content: space-between; border-bottom: 1px solid var(--sosn-gray-line); }
	.sosn-nav-list .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: none; display: none; padding: 0 0 0 14px; margin-top: 4px;
	}
	.sosn-nav-list li.menu-item-has-children.is-open .sub-menu { display: block; }
	.sosn-menu-toggle { display: block; }
	.sosn-phone-label { display: none; }
	.sosn-header-actions .sosn-btn--primary { padding: 10px 14px; font-size: 14px; }

	.sosn-post-grid { grid-template-columns: 1fr; }
	.sosn-footer-grid { grid-template-columns: 1fr 1fr; }
	.sosn-footer-brand { grid-column: 1 / -1; }
	.sosn-blog-cta { flex-direction: column; align-items: flex-start; }
	.sosn-post-nav { grid-template-columns: 1fr; }
	.sosn-post-nav .nav-next { text-align: left; }
}

@media (max-width: 480px) {
	.sosn-logo-title { font-size: 18px; }
	.sosn-page-hero { padding: 44px 0 30px; }
	.sosn-footer-grid { grid-template-columns: 1fr; }
}
