/*
 * News Scope Daily TV — Thème personnalisé
 * Toutes les valeurs de couleur utilisent les variables CSS de theme.json
 * ─────────────────────────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════════════════════ *
 *  RÉINITIALISATION ET VARIABLES GLOBALES                                *
 * ═══════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--wp--preset--font-family--body, 'Inter', sans-serif);
	color: var(--wp--preset--color--dark);
	background-color: #ffffff;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--wp--preset--color--secondary);
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  TOPBAR                                                                *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-topbar {
	background-color: var(--wp--preset--color--dark);
	color: #cccccc;
	font-size: 0.78rem;
	padding: 0.35rem 1.5rem;
}

.nsd-topbar a {
	color: #cccccc;
	transition: color 0.2s;
}

.nsd-topbar a:hover {
	color: var(--wp--preset--color--secondary);
}

.nsd-topbar .wp-block-group {
	max-width: 1200px;
	margin-inline: auto;
}

.nsd-topbar__slogan {
	font-style: italic;
}

.nsd-lang-switcher a {
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0 0.3rem;
	border-right: 1px solid #444;
}

.nsd-lang-switcher a:last-child {
	border-right: none;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  EN-TÊTE PRINCIPAL                                                     *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-header-main {
	background-color: var(--wp--preset--color--primary);
	color: #ffffff;
	padding: 0.85rem 1.5rem;
}

.nsd-header-main .wp-site-logo img {
	border-radius: 4px;
}

.wp-block-site-title a {
	font-family: var(--wp--preset--font-family--heading, 'Playfair Display', serif);
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff !important;
	text-decoration: none;
}

.wp-block-site-tagline {
	font-size: 0.82rem;
	color: #aaaacc;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  BARRE DE NAVIGATION                                                   *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-navbar {
	background-color: var(--wp--preset--color--accent);
	padding: 0 1.5rem;
}

.nsd-navbar .wp-block-navigation {
	max-width: 1200px;
	margin-inline: auto;
}

/* Force une seule ligne de navigation */
.nsd-navbar .wp-block-navigation__container {
	flex-wrap: nowrap !important;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.nsd-navbar .wp-block-navigation__container::-webkit-scrollbar {
	display: none;
}

.nsd-navbar .wp-block-navigation-item__content {
	color: #ffffff;
	font-size: 0.73rem;
	font-weight: 600;
	padding: 0.72rem 0.42rem;
	display: block;
	letter-spacing: 0.01em;
	white-space: nowrap;
	transition: background-color 0.2s, color 0.2s;
}

.nsd-navbar .wp-block-navigation-item__content:hover,
.nsd-navbar .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content {
	background-color: var(--wp--preset--color--secondary);
	color: #ffffff;
}

/* Sous-menus */
.nsd-navbar .wp-block-navigation__submenu-container {
	background-color: var(--wp--preset--color--primary);
	border-top: 3px solid var(--wp--preset--color--secondary);
	min-width: 200px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  BANDEAU DÉROULANT (TICKER)                                            *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-ticker {
	background-color: var(--wp--preset--color--secondary);
	color: #ffffff;
	overflow: hidden;
	padding: 0.55rem 0;
	position: relative;
}

.nsd-ticker__label {
	background-color: var(--wp--preset--color--primary);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.2rem 0.85rem;
	white-space: nowrap;
	flex-shrink: 0;
	z-index: 2;
}

.nsd-ticker__track {
	display: flex;
	gap: 3rem;
	animation: nsd-ticker-scroll 30s linear infinite;
	will-change: transform;
	white-space: nowrap;
}

.nsd-ticker__track:hover {
	animation-play-state: paused;
}

.nsd-ticker__track .wp-block-post-title {
	display: inline;
	font-size: 0.88rem;
	font-weight: 500;
}

.nsd-ticker__track .wp-block-post-title a {
	color: #ffffff;
}

.nsd-ticker__track .wp-block-post-title a:hover {
	text-decoration: underline;
}

@keyframes nsd-ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  HERO                                                                  *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-hero {
	padding: 2rem 1.5rem 1.75rem;
	border-bottom: 1px solid #eeeeee;
}

.nsd-hero__cols {
	gap: 1.5rem !important;
	align-items: flex-start;
}

.nsd-hero__featured {
	padding-right: 1.5rem;
	border-right: 1px solid #eeeeee;
}

.nsd-hero__featured::before {
	content: 'À LA UNE';
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--wp--preset--color--secondary);
	margin-bottom: 0.75rem;
}

.nsd-hero .wp-block-post-featured-image img {
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Placeholder hero quand pas d'image */
.nsd-hero__featured .wp-block-post-featured-image:empty,
.nsd-hero__featured .wp-block-post-featured-image a:not(:has(img)) {
	display: block;
	padding-top: 56.25%;
	border-radius: 6px;
	background: linear-gradient(150deg, var(--wp--preset--color--primary) 0%, #1e3d5f 100%);
}

/* Articles récents dans la sidebar héro */
.nsd-recent-item {
	padding: 0.7rem 0;
	border-bottom: 1px solid #eeeeee;
}

.nsd-recent-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.nsd-recent-item__inner .wp-block-post-featured-image img {
	border-radius: 3px;
	flex-shrink: 0;
	object-fit: cover;
}

/* Placeholder thumbnail dans sidebar héro */
.nsd-recent-item__inner .wp-block-post-featured-image:empty,
.nsd-recent-item__inner .wp-block-post-featured-image a:not(:has(img)) {
	display: block;
	width: 105px;
	height: 72px;
	background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #1e3d5f 100%);
	border-radius: 3px;
	flex-shrink: 0;
}

.nsd-hero__featured .wp-block-post-title {
	font-family: var(--wp--preset--font-family--heading, 'Playfair Display', serif);
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
}

.nsd-hero__featured .wp-block-post-title a:hover {
	color: var(--wp--preset--color--secondary);
}

.nsd-hero__secondary .wp-block-post-title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  ESPACE PUBLICITAIRE                                                   *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-ad-placeholder {
	background-color: #f0f0f0;
	border: 2px dashed #cccccc;
	color: #999999;
	font-size: 0.8rem;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.nsd-ad-slot--728x90 {
	width: 100%;
	max-width: 728px;
	height: 90px;
	margin-inline: auto;
}

.nsd-ad-slot--300x250 {
	width: 100%;
	max-width: 300px;
	height: 250px;
	margin-inline: auto;
}

.nsd-ad-leaderboard {
	text-align: center;
	padding: 1rem 0;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  GRILLE MAGAZINE                                                       *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-magazine-grid {
	padding: 2rem 1.5rem;
}

.nsd-section-heading {
	font-size: 0.97rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	border-left: 4px solid var(--wp--preset--color--secondary);
	padding-left: 0.65rem;
	margin: 0;
	color: var(--wp--preset--color--primary);
	line-height: 1.2;
}

/* Sections catégories */
.nsd-cat-section {
	margin-bottom: 2.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #f0f0f0;
}

.nsd-cat-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.nsd-cat-section__header {
	padding-bottom: 0.7rem;
	margin-bottom: 1.25rem;
	border-bottom: 2px solid #eeeeee;
	position: relative;
}

.nsd-cat-section__header::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 65px;
	height: 2px;
	background-color: var(--wp--preset--color--secondary);
}

/* "Voir tout →" dans l'en-tête de section */
.nsd-cat-section__header .wp-block-read-more {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--wp--preset--color--secondary) !important;
	text-decoration: none;
	transition: color 0.2s;
}

.nsd-cat-section__header .wp-block-read-more:hover {
	color: var(--wp--preset--color--primary) !important;
}

/* Items du grid de posts */
.nsd-cat-section .wp-block-post-template > li {
	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s, box-shadow 0.2s;
}

.nsd-cat-section .wp-block-post-template > li:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Padding du contenu dans chaque item grid */
.nsd-cat-section .wp-block-post-template > li .wp-block-post-terms,
.nsd-cat-section .wp-block-post-template > li .wp-block-post-title,
.nsd-cat-section .wp-block-post-template > li .wp-block-post-date {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.nsd-cat-section .wp-block-post-template > li .wp-block-post-terms {
	padding-top: 0.5rem;
}

.nsd-cat-section .wp-block-post-template > li .wp-block-post-date {
	padding-bottom: 0.75rem;
}

.nsd-cat-section .wp-block-post-featured-image {
	margin-bottom: 0;
}

.nsd-cat-section .wp-block-post-featured-image img {
	width: 100%;
	object-fit: cover;
}

/* Placeholder image dans les items de la grille */
.nsd-cat-section .wp-block-post-featured-image:empty,
.nsd-cat-section .wp-block-post-featured-image a:not(:has(img)) {
	display: block;
	padding-top: 56.25%;
	background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #1e3d5f 100%);
}

/* Carte article */
.nsd-card {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s, transform 0.2s;
	border: 1px solid #eeeeee;
}

.nsd-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

/* Placeholder quand pas d'image mise en avant */
.nsd-card__image .wp-block-post-featured-image:empty,
.nsd-card__image .wp-block-post-featured-image a:not(:has(img)) {
	display: block;
	width: 100%;
	padding-top: 56.25%;
	background: linear-gradient(135deg, #1a2e4a 0%, #0e1f33 100%);
	position: relative;
}

.nsd-card__image .wp-block-post-featured-image img {
	border-radius: 0;
}

.nsd-card__body {
	padding: 0.85rem;
}

.nsd-card__body .wp-block-post-title {
	font-size: 0.97rem;
	font-weight: 700;
	line-height: 1.3;
}

.nsd-card__body .wp-block-post-title a:hover {
	color: var(--wp--preset--color--secondary);
}

.nsd-card__body .wp-block-post-excerpt p {
	margin-top: 0.35rem;
	font-size: 0.84rem;
	color: #555555;
	line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  SIDEBAR ET WIDGETS                                                    *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-sidebar {
	padding-top: 0;
}

.nsd-widget {
	margin-bottom: 2rem;
}

.nsd-widget__title {
	font-size: 0.88rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-bottom: 2px solid var(--wp--preset--color--secondary);
	padding-bottom: 0.45rem;
	margin-top: 0;
	margin-bottom: 1rem;
}

/* Widget : articles populaires (liste compact) */
.nsd-popular-item {
	padding-bottom: 0.75rem;
	margin-bottom: 0.75rem;
	border-bottom: 1px solid #eeeeee;
}

.nsd-popular-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.nsd-popular-item .wp-block-post-featured-image img {
	border-radius: 3px;
	flex-shrink: 0;
	object-fit: cover;
}

/* Catégories natif WP */
.wp-block-categories-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wp-block-categories-list li {
	padding: 0.3rem 0;
	border-bottom: 1px solid #eeeeee;
	font-size: 0.88rem;
}

.wp-block-categories-list li:last-child {
	border-bottom: none;
}

.wp-block-categories-list a:hover {
	color: var(--wp--preset--color--secondary);
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  SECTION VIDÉO / YOUTUBE                                               *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-video-section {
	background-color: var(--wp--preset--color--dark);
	color: #ffffff;
	padding: 2.5rem 1.5rem;
}

.nsd-video-section .nsd-section-heading {
	color: #ffffff;
	border-left-color: var(--wp--preset--color--secondary);
}

.nsd-video-section .nsd-cat-section__header {
	border-bottom-color: rgba(255, 255, 255, 0.12);
}

.nsd-video-section .nsd-cat-section__header::after {
	background-color: var(--wp--preset--color--secondary);
}

.nsd-video-section .wp-block-embed {
	border-radius: 6px;
	overflow: hidden;
}

.nsd-video-section .wp-block-post-title a {
	color: #dddddd;
}

.nsd-video-section .wp-block-post-title a:hover {
	color: var(--wp--preset--color--secondary);
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  ARTICLE SIMPLE (single.html)                                          *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-single-layout .nsd-single__content {
	padding-right: 2rem;
}

.nsd-article-cats {
	margin-bottom: 0.5rem;
}

.nsd-article-meta {
	color: #777777;
	font-size: 0.82rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #eeeeee;
}

.nsd-article-featured-img {
	margin-bottom: 1.5rem;
}

.nsd-article-featured-img img {
	border-radius: 6px;
}

/* Contenu de l'article */
.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4 {
	font-family: var(--wp--preset--font-family--heading, 'Playfair Display', serif);
	margin-top: 1.75em;
}

.wp-block-post-content p {
	line-height: 1.75;
	font-size: 1.05rem;
}

.wp-block-post-content blockquote {
	border-left: 4px solid var(--wp--preset--color--secondary);
	margin-left: 0;
	padding: 0.75rem 1.25rem;
	background: #f9f9f9;
	font-style: italic;
}

/* Tags */
.nsd-article-tags {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #eeeeee;
}

/* Navigation précédent / suivant */
.nsd-post-nav {
	margin-top: 2rem;
	padding-top: 1rem;
	border-top: 1px solid #eeeeee;
	font-size: 0.88rem;
}

.nsd-post-nav .wp-block-post-navigation-link a {
	color: var(--wp--preset--color--secondary);
	font-weight: 600;
}

/* Commentaires */
.nsd-comments {
	margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  ARCHIVE (archive.html)                                                *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-archive-header {
	background: linear-gradient(150deg, var(--wp--preset--color--primary) 55%, #1e3d5f 100%);
	padding: 2.25rem 1.5rem 2rem;
	border-bottom: 4px solid var(--wp--preset--color--secondary);
	margin-bottom: 0;
}

.nsd-archive-title {
	color: #ffffff;
	font-family: var(--wp--preset--font-family--heading, 'Playfair Display', serif);
	font-size: 2rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.4rem 0;
	padding: 0;
}

.nsd-archive-title::before {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background-color: var(--wp--preset--color--secondary);
	margin-bottom: 0.6rem;
}

.nsd-archive-desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.93rem;
	margin: 0;
}

/* Archive content area padding */
.nsd-archive-layout {
	margin-top: 1.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  RECHERCHE (search.html)                                               *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-search-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.nsd-search-form {
	max-width: 600px;
	margin-bottom: 1.5rem;
}

.nsd-search-form .wp-block-search__input {
	border: 2px solid #dddddd;
	padding: 0.6rem 0.9rem;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.2s;
}

.nsd-search-form .wp-block-search__input:focus {
	border-color: var(--wp--preset--color--secondary);
}

.nsd-search-form .wp-block-search__button {
	background-color: var(--wp--preset--color--secondary);
	color: #ffffff;
	border: none;
	padding: 0.6rem 1.1rem;
	cursor: pointer;
	font-weight: 600;
	transition: background-color 0.2s;
}

.nsd-search-form .wp-block-search__button:hover {
	background-color: var(--wp--preset--color--primary);
}

.nsd-search-result {
	padding: 1.25rem 0;
}

.nsd-search-result__img img {
	border-radius: 4px;
	flex-shrink: 0;
	object-fit: cover;
}

.nsd-search-result__body .wp-block-post-title {
	font-size: 1.05rem;
	font-weight: 700;
}

.nsd-search-result__body .wp-block-post-title a:hover {
	color: var(--wp--preset--color--secondary);
}

.nsd-no-results {
	padding: 3rem 0;
	text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  PAGINATION                                                            *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-pagination {
	margin-top: 2rem;
	gap: 0.35rem;
}

.nsd-pagination .wp-block-query-pagination-numbers a,
.nsd-pagination .wp-block-query-pagination-previous a,
.nsd-pagination .wp-block-query-pagination-next a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.6rem;
	border: 1px solid #dddddd;
	border-radius: 4px;
	font-size: 0.88rem;
	font-weight: 600;
	transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}

.nsd-pagination .wp-block-query-pagination-numbers a:hover,
.nsd-pagination .wp-block-query-pagination-previous a:hover,
.nsd-pagination .wp-block-query-pagination-next a:hover {
	background-color: var(--wp--preset--color--secondary);
	color: #ffffff;
	border-color: var(--wp--preset--color--secondary);
}

.nsd-pagination .wp-block-query-pagination-numbers .current {
	background-color: var(--wp--preset--color--primary);
	color: #ffffff;
	border-color: var(--wp--preset--color--primary);
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  PIED DE PAGE                                                          *
 * ═══════════════════════════════════════════════════════════════════════ */

.nsd-footer {
	background-color: var(--wp--preset--color--dark);
	color: #cccccc;
	padding: 3rem 1.5rem 1.5rem;
}

.nsd-footer a {
	color: #bbbbbb;
	transition: color 0.2s;
}

.nsd-footer a:hover {
	color: var(--wp--preset--color--secondary);
}

.nsd-footer-widget-title {
	font-size: 0.88rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: #ffffff;
	border-bottom: 2px solid var(--wp--preset--color--secondary);
	padding-bottom: 0.4rem;
	margin-bottom: 1rem;
}

.nsd-footer-about {
	font-size: 0.88rem;
	line-height: 1.6;
}

.nsd-social-links {
	margin-top: 1rem;
	gap: 0.6rem;
}

.nsd-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	font-size: 0.95rem;
	transition: background-color 0.2s;
}

.nsd-social-links a:hover {
	background-color: var(--wp--preset--color--secondary);
	color: #ffffff;
}

.nsd-footer-nav .wp-block-navigation-item__content {
	color: #bbbbbb;
	font-size: 0.88rem;
	padding: 0.2rem 0;
	display: block;
}

.nsd-footer-nav .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--secondary);
}

.nsd-footer-copyright {
	background-color: rgba(0, 0, 0, 0.25);
	padding: 0.75rem 1.5rem;
	font-size: 0.78rem;
	color: #999999;
	text-align: center;
	margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════ *
 *  RESPONSIVE — ≤ 768px                                                  *
 * ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
	/* Colonnes → empilement */
	.wp-block-columns {
		flex-direction: column !important;
	}

	.wp-block-column {
		flex-basis: 100% !important;
		width: 100% !important;
	}

	/* Ticker */
	.nsd-ticker__label {
		display: none;
	}

	/* Hero */
	.nsd-hero__featured .wp-block-post-title {
		font-size: 1.3rem;
	}

	/* En-tête */
	.nsd-header-main {
		padding: 0.65rem 1rem;
	}

	.wp-block-site-title a {
		font-size: 1.25rem;
	}

	/* Pub leaderboard → cacher ou réduire */
	.nsd-ad-slot--728x90 {
		height: auto;
		min-height: 50px;
		max-width: 100%;
	}

	/* Single : retirer le padding droit */
	.nsd-single-layout .nsd-single__content {
		padding-right: 0;
	}

	/* Recherche : résultats en colonne */
	.nsd-search-result {
		flex-direction: column !important;
	}

	.nsd-search-result__img img {
		width: 100% !important;
		height: 180px !important;
	}

	/* Footer */
	.nsd-footer {
		padding: 2rem 1rem 1rem;
	}
}
