/*!
Theme Name: CheQuadroBlog
Theme URI: https://ig96.net/
Author: Jebbe
Author URI: https://ig96.net/
Description: A beautiful WordPress theme for art and interior design blogs
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: chequadroblog
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

CheQuadroBlog is an original theme designed and developed by Jebbe.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Components
	- Header
	- Navigation
	- Hero
	- Posts and pages
	- Featured Posts
	- Categories
	- Products
	- Newsletter
	- Blog Stats
	- Footer
	- Comments
	- Widgets
	- Media
# Utilities
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
	max-width: 100%;
	height: auto;
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	margin: 0 0 1rem;
	color: #283845;
	line-height: 1.3;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1.5rem;
}

/* Links
--------------------------------------------- */
a {
	color: #283845;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:visited {
	color: #283845;
}

a:hover,
a:focus,
a:active {
	color: #b78c64;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.btn {
	border: 1px solid #b78c64;
	border-radius: 3px;
	background: #b78c64;
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 0.9rem;
	line-height: 1;
	padding: 0.8rem 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.btn:hover {
	background: #a67b55;
	border-color: #a67b55;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 0.8rem;
	width: 100%;
	font-family: 'Poppins', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	border-color: #b78c64;
	outline: none;
}

textarea {
	width: 100%;
}

.btn-primary {
	background-color: #b78c64;
	border-color: #b78c64;
	color: #fff;
	margin-right: 10px;
}

.btn-secondary {
	background-color: transparent;
	border-color: #b78c64;
	color: #b78c64;
}

.btn-secondary:hover {
	background-color: #b78c64;
	color: #fff;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.site-content {
	margin: 0;
}

section {
	padding: 4rem 0;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.view-all {
	font-size: 0.9rem;
	display: flex;
	align-items: center;
}

.view-all .arrow-right {
	display: inline-block;
	margin-left: 5px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #b78c64;
	border-right: 2px solid #b78c64;
	transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Header
--------------------------------------------- */
.site-header {
	background-color: #fff;
	padding: 1.5rem 0;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	position: relative;
	z-index: 100;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	display: flex;
	flex-direction: column;
}

.site-title {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
}

.site-title a {
	color: #283845;
}

.site-tagline {
	margin: 5px 0 0;
	font-size: 0.9rem;
	color: #6c757d;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	margin-left: 2rem;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	color: #283845;
}

.main-navigation a:hover {
	color: #b78c64;
}

.menu-toggle {
	display: none;
}

/* Hero Section
--------------------------------------------- */
.hero-section {
	background-image: url('img/hero-bg.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 6rem 0;
	position: relative;
}

.hero-section:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
	position: relative;
	max-width: 600px;
	z-index: 2;
}

.hero-section h1 {
	color: #fff;
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.accent-text {
	color: #b78c64;
	display: block;
}

.hero-section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.hero-buttons {
	display: flex;
}

/* Featured Posts Section
--------------------------------------------- */
.featured-posts {
	background-color: #f8f9fa;
}

.featured-post {
	display: flex;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.post-thumbnail {
	flex: 0 0 50%;
	max-width: 50%;
}

.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-content {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 2rem;
}

.post-title {
	margin-bottom: 0.5rem;
}

.post-date {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.post-excerpt {
	margin-bottom: 1.5rem;
}

.read-more {
	font-weight: 500;
	color: #b78c64;
}

/* Recent Articles
--------------------------------------------- */
.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.article-card {
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid #eee;
}

.article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.article-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.article-card > * {
	position: relative;
	z-index: 2;
}

.article-card a {
	position: relative;
	z-index: 3;
}

.article-thumbnail {
	overflow: hidden;
}

.article-thumbnail img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.article-meta {
	padding: 1rem 1.5rem 0;
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
}

.category {
	color: #b78c64;
	font-weight: 500;
}

.date {
	color: #6c757d;
}

.article-title {
	padding: 0 1.5rem;
	margin-bottom: 0.5rem;
}

.article-excerpt {
	padding: 0 1.5rem 1.5rem;
	font-size: 0.95rem;
	color: #6c757d;
}

.article-card .article-title a {
	color: #283845;
	transition: color 0.3s ease;
}

.article-card:hover .article-title a {
	color: #b78c64;
}

/* Assicurarsi che i link all'interno della card siano cliccabili sopra il link invisibile */
.article-thumbnail a {
	position: relative;
	z-index: 2;
	display: block;
}

.article-excerpt a {
	position: relative;
	z-index: 2;
}

/* Categories
--------------------------------------------- */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.category-card {
	height: 200px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	transition: transform 0.3s ease;
}

.category-card:hover {
	transform: translateY(-5px);
}

.category-card.astratto {
	background-image: url('img/category-astratto.jpg');
}

.category-card.natura {
	background-image: url('img/category-natura.jpg');
}

.category-card.fotografia {
	background-image: url('img/category-fotografia.jpg');
}

.category-card:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.category-content {
	position: relative;
	padding: 1.5rem;
	color: #fff;
	width: 100%;
}

.category-content h3 {
	margin-bottom: 5px;
	color: #fff;
}

.post-count {
	font-size: 0.85rem;
}

/* Featured Products
--------------------------------------------- */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.product-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-image img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.product-info {
	padding: 1.5rem;
}

.product-info h4 {
	margin-bottom: 5px;
}

.artist {
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 0.5rem;
}

.price {
	font-weight: 600;
	color: #b78c64;
	margin: 0;
}

/* Newsletter
--------------------------------------------- */
.newsletter-section {
	background-color: #f8f9fa;
	padding: 4rem 0;
	text-align: center;
}

.newsletter-section h2 {
	margin-bottom: 1rem;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 600px;
	margin: 2rem auto 0;
}

.newsletter-form-group {
	display: flex;
	width: 100%;
	justify-content: center;
}

.newsletter-form input {
	flex: 1;
	min-width: 300px;
	padding: 0.75rem 1rem;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.newsletter-form button {
	background-color: #b78c64;
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	margin-left: 0.5rem;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.gdpr-consent {
	width: 100%;
	margin-top: 1rem;
	text-align: left;
	font-size: 0.85rem;
	color: #666;
	display: flex;
	align-items: flex-start;
}

.gdpr-consent input[type="checkbox"] {
	margin-right: 8px;
	margin-top: 3px;
	min-width: auto;
	flex: 0 0 auto;
}

.gdpr-consent label {
	flex: 1;
	line-height: 1.4;
}

.gdpr-consent a {
	color: #b78c64;
	text-decoration: underline;
}

.footer-newsletter .gdpr-consent {
	margin-top: 0.75rem;
}

/* Footer newsletter */
.footer-newsletter {
	display: flex;
	margin-top: 1rem;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-evenly;
	align-items: stretch;
}

.footer-newsletter .newsletter-form-group {
	display: flex;
	width: 100%;
}

.footer-newsletter input {
	flex: 1;
	min-width: 0;
	padding: 0.5rem 1rem;
	border: 1px solid #ddd;
	border-radius: 3px;
}

.footer-newsletter button {
	background-color: #b78c64;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	margin-left: 0.5rem;
	border-radius: 3px;
	cursor: pointer;
	transition: background-color 0.3s;
}

/* Blog Stats
--------------------------------------------- */
.blog-stats {
	background-color: #f8f9fa;
}

.stats-grid {
	display: flex;
	justify-content: space-around;
	text-align: center;
}

.stat-number {
	display: block;
	font-family: 'Playfair Display', serif;
	font-size: 3rem;
	font-weight: 700;
	color: #b78c64;
	margin-bottom: 0.5rem;
}

.stat-title {
	font-size: 1.1rem;
	color: #6c757d;
}

/* Footer
--------------------------------------------- */
.site-footer {
	background-color: #283845;
	color: #fff;
	padding: 4rem 0 2rem;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-widget-title {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.footer-description,
.footer-widget p {
	color: #b8c2cc;
	font-size: 0.95rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #b8c2cc;
}

.footer-links a:hover {
	color: #b78c64;
}

.footer-newsletter {
	display: flex;
	margin-top: 1rem;
}

.footer-newsletter input {
	flex: 1;
	border-radius: 3px 0 0 3px;
	border: none;
}

.footer-newsletter button {
	border-radius: 0 3px 3px 0;
	border: none;
	background-color: #b78c64;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
}

.copyright p {
	margin: 0;
	color: #b8c2cc;
}

.footer-nav a {
	color: #b8c2cc;
}

.footer-nav a:hover {
	color: #b78c64;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media screen and (max-width: 992px) {
	.articles-grid,
	.categories-grid,
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.featured-post {
		flex-direction: column;
	}
	
	.post-thumbnail,
	.post-content {
		flex: 0 0 100%;
		max-width: 100%;
	}
	
	.articles-grid,
	.categories-grid,
	.products-grid {
		grid-template-columns: 1fr;
	}
	
	.stats-grid {
		flex-direction: column;
	}
	
	.stat-item {
		margin-bottom: 2rem;
	}
	
	.footer-widgets {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-nav {
		margin-top: 1rem;
	}
	
	.menu-toggle {
	display: block;
		background: none;
		border: none;
		padding: 0;
		width: 30px;
		height: 20px;
		position: relative;
	}
	
	.menu-icon,
	.menu-icon:before,
	.menu-icon:after {
	display: block;
		width: 100%;
		height: 2px;
		background-color: #283845;
		position: absolute;
		transition: all 0.3s ease;
	}
	
	.menu-icon {
		top: 50%;
		transform: translateY(-50%);
	}
	
	.menu-icon:before,
	.menu-icon:after {
		content: '';
	}
	
	.menu-icon:before {
		top: -8px;
	}
	
	.menu-icon:after {
		bottom: -8px;
	}
	
	.main-navigation ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #fff;
		padding: 1rem;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		flex-direction: column;
	}
	
	.main-navigation li {
		margin: 0 0 1rem;
	}
	
	.main-navigation.toggled ul {
	display: flex;
}

	.hero-section h1 {
		font-size: 2.2rem;
	}
	
	.hero-buttons {
		flex-direction: column;
	}
	
	.btn-primary {
		margin-right: 0;
		margin-bottom: 1rem;
	}
	
	.article-title {
		font-size: 1.8rem;
	}
	
	.article-featured-image {
		height: 300px;
	}
	
	.article-navigation {
		flex-direction: column;
	}
	
	.nav-previous,
	.nav-next {
		margin-bottom: 1rem;
	}
	
	.nav-next {
		text-align: left;
	}
}

/* 404 Page */
.error-404 {
    padding: 5rem 0;
    text-align: center;
}

.error-404 .page-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.error-404 p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.error-image {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.error-image img {
	max-width: 100%;
    height: auto;
}

.error-404 .search-form {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.error-404 .widget {
    margin-bottom: 2rem;
    text-align: left;
}

.error-404 .widget-title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.error-back-home {
    margin-top: 2rem;
}

.error-back-home .btn {
	display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #b78c64;
    color: #fff;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.error-back-home .btn:hover {
    background-color: #a07a54;
    color: #fff;
    text-decoration: none;
}

/* Add styles for article page header */
.article-header {
    background-color: #fff;
    border-bottom: 1px solid #e9ecef;
}

.article-header .site-title a {
    color: #333;
}

.article-header .main-navigation a {
    color: #555;
}

.article-header .main-navigation a:hover {
    color: #b78c64;
}

.newsletter-signup {
	background-color: #f8f9fa;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 3rem;
}

.newsletter-signup h3 {
	margin-bottom: 1rem;
}

.newsletter-signup p {
	margin-bottom: 1.5rem;
}

.newsletter-signup .newsletter-form {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 100%;
	margin: 1rem auto 0;
}

.newsletter-signup .newsletter-form-group {
	display: flex;
	width: 100%;
	justify-content: center;
}

.newsletter-signup .gdpr-consent {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: #6c757d;
	display: flex;
	align-items: flex-start;
	text-align: left;
}

.newsletter-signup .gdpr-consent input[type="checkbox"] {
	margin-right: 8px;
	margin-top: 3px;
}

.newsletter-signup .gdpr-consent label {
	line-height: 1.4;
}

.newsletter-signup .gdpr-consent a {
	color: #b78c64;
	text-decoration: underline;
}

.related-title {
	text-align: center;
	margin-bottom: 2rem;
}

/* Single Article Styles */
.single-article {
	margin-bottom: 4rem;
}

.article-featured-image {
	position: relative;
	margin-bottom: 2rem;
	height: 500px;
	overflow: hidden;
}

.article-featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-category {
	position: absolute;
	left: 0;
	bottom: 0;
	color: #fff;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 500;
}

.article-header {
	margin-bottom: 2rem;
	text-align: center;
}

.article-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.article-meta {
	color: #6c757d;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.article-date {
	margin-right: 1rem;
}

.article-content {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 3rem;
}

.article-content p {
	margin-bottom: 1.5rem;
}

.article-content h2 {
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
}

.article-content img {
	max-width: 100%;
	height: auto;
	margin: 2rem 0;
	border-radius: 8px;
}

.article-content blockquote {
	border-left: 4px solid #b78c64;
	padding-left: 1.5rem;
	margin-left: 0;
	margin-right: 0;
	font-style: italic;
	color: #555;
}

.article-footer {
	margin-bottom: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #eee;
}

.article-tags {
	margin-bottom: 1.5rem;
}

.article-tags .tag {
	display: inline-block;
	background-color: #f8f9fa;
	color: #6c757d;
	padding: 0.3rem 0.8rem;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
	border-radius: 3px;
	font-size: 0.85rem;
}

.article-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}

.nav-previous,
.nav-next {
	flex: 0 0 48%;
}

.nav-next {
	text-align: right;
}

.nav-subtitle {
	display: block;
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.nav-title {
	font-weight: 500;
}

.related-articles {
	margin-top: 4rem;
	margin-bottom: 4rem;
}

/* Shop Button in Articles */
.shop-cta {
    margin: 3rem 0;
    text-align: center;
    clear: both;
}

.shop-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Footer newsletter and GDPR */
.footer-gdpr {
    margin-top: 1rem;
	display: block;
    width: 100%;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-newsletter .newsletter-form-group {
    display: flex;
    width: 100%;
    margin-bottom: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.footer-newsletter button {
    background-color: #b78c64;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
	border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-nav a, 
.gdpr-consent a, 
.footer-gdpr a {
    color: #ffffff;
    text-decoration: underline;
}

.footer-nav a:hover, 
.gdpr-consent a:hover, 
.footer-gdpr a:hover {
    color: #b78c64;
}

/* Chi Siamo Section */
.about-us-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-us-image img {
    max-width: 100%;
	height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-us-content {
    padding: 1rem 0;
}

.about-us-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #333;
}

.about-us-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.store-logo {
    margin-bottom: 1.5rem;
    max-width: 180px;
}

.store-logo img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .about-us-grid {
        grid-template-columns: 1fr;
    }
    
    .about-us-image {
        margin-bottom: 1.5rem;
    }
}

/* Article box enhancements */
.article-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #eee;
}

.article-thumbnail {
    overflow: hidden;
}

.article-thumbnail img {
    transition: transform 0.5s ease;
}

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

.article-meta {
    padding: 1rem 1.5rem 0;
}

.article-title {
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
}

.article-excerpt {
    padding: 0 1.5rem 1.5rem;
}

.full-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-decoration: none;
}

.article-meta .category a {
    position: relative;
    z-index: 2;
}

.article-title a {
    position: relative;
    z-index: 2;
}
