/* CUERPO DE LA PAGINA */

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	text-align: center;
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	padding: 0;
	background-color: black;
}

html {
	-webkit-text-size-adjust: 100%;
}

.main h1 {
	font-size: 16px;
	font-weight: 500;
	color: #978331;
	margin-top: 10px;
	padding-bottom: 10px;
}

/* PAMELA ANDERSON */

.navbar {
	min-width: 1000px;
	background-color: black;
	display: flex;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.navbar-container {
	display: flex;
	height: 50px;
	justify-content: center;
	align-items: center;
	width: 1000px;
	margin: 0 auto;
	margin-bottom: 10px;
}

/* LISTA PRINCIPAL */

.navbar-container>ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ELEMENTOS PRINCIPALES */

.navbar-container>ul>li {
	position: relative;
	padding: 0 1.5rem;
}

/* ENLACES PRINCIPALES */

.navbar-container>ul>li>a {
	display: block;
	padding: 0;
	color: #d8d8d8;
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 1px;
	font-size: 12px;
	transition: color 0.3s;
}


/* HOME */

.navbar-container>ul>li:first-child>a {
	color: #978331;
	font-weight: 700;
}


/* HOVER ENLACES PRINCIPALES */

.navbar-container>ul>li>a:hover {
	color: #978331;
}


/* ZONA INVISIBLE DE CONEXIÓN
   ENTRE NAVBAR Y DROPDOWN */

.dropdown::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 8px;
	z-index: 1000;
}


/* CONTENIDO DROPDOWN */

.dropdown-content {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);

	min-width: 160px;
	max-height: 500px;

	overflow-y: auto;

	background-color: #666;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

	z-index: 1001;

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


/* ELEMENTOS INTERNOS DEL DROPDOWN */

.dropdown-content li {
	padding: 0;
}


/* ENLACES DEL DROPDOWN */

.dropdown-content li a {
	display: block;
	padding: 10px 16px;

	color: #d8d8d8;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
}


/* HOVER DROPDOWN */

.dropdown-content li a:hover {
	background-color: #444;
	color: #978331;
}


/* MOSTRAR DROPDOWN */

.dropdown:hover .dropdown-content {
	display: block;
}

.main {
	padding-top: 60px;
	padding-bottom: 60px;
	flex: 1;
}

.bannertop img {
	width: 100%;
	min-width: 1000px;
}

.bannertitle h1 {
	font-size: 24px;
	font-weight: 100;
	color: #978331;
	text-align: center;
	letter-spacing: 2px;
	margin: 0;
	padding-top: 15px;
}

.bannertitle h2 {
	font-size: 14px;
	font-weight: 200;
	color: #d8d8d8;
	text-align: center;
	padding-top: 2px;
	margin: 0;
	padding-bottom: 15px;
}

.divider {
	width: 100%;
	height: 1px;
	background-color: #978331;
	transform: scaleY(0.3);
	transform-origin: 0 0;
	margin-top: 5px;
	margin-bottom: 5px;
}


/* LAYOUT PARA INDEX.COM */

.layout {
	display: grid;
	grid-template-columns: 20% 80%;
	width: 100%;
	min-height: 500px;
}

.left-column {
	margin-top: 15px;
	padding-left: clamp(15px, 3vw, 60px);
	padding-right: clamp(12px, 2.5vw, 50px);
}

.right-column {
	padding-left: clamp(12px, 2.5vw, 50px);
	padding-right: clamp(15px, 3vw, 60px);
}




.byyear {
	margin-top: 20px;
	padding-bottom: 30px;
}

.byyear-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
    row-gap: 5px;
}

.byyear-grid > div {
    font-size: 12px;
    font-weight: 100;
    line-height: 1.2;
    color: rgb(222, 222, 222);
}

.byyear-grid > div:nth-child(odd) {
    text-align: left;
}

.byyear-grid > div:nth-child(even) {
    text-align: right;
}

.byyear h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
	margin: 0;
	padding-bottom: 15px;
}

.statistics {
	margin-top: 20px;
	padding-bottom: 30px;
}

.statistics-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 15px;
}

.statistics-icon {
	font-size: 24px;
	color: #978331;
	flex-shrink: 0;
	margin: 0;
}

.statistics-icon img {
	height: 30px;
	width: 30px;
}

.statistics-title {
	text-align: left;
	font-size: 12px;
	font-weight: 300;
	color: #978331;
	margin: 0;
}

.statistics h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
	margin: 0;
}

.statistics span {
	color: #d8d8d8;
}

.lucide {
	color: #978331;
	stroke: currentColor;
	stroke-width: 1.2;
}

.getsocial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    width: 100%;
    margin-top: 20px;
    padding-bottom: 30px;
}

.getsocial a {
    color: #978331;
    text-decoration: none;
}

.getsocial a:nth-child(1) {
    justify-self: start;
}

.getsocial a:nth-child(2) {
    justify-self: center;
}

.getsocial a:nth-child(3) {
    justify-self: end;
}

.getsocial svg {
    width: 35px;
    height: 35px;
    stroke: currentColor;
    stroke-width: 1.2;
}

.getsocial a:hover {
    opacity: 0.7;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #978331;
    font-size: 13px;
}

.social-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.3;
}

.getsocial h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
	margin: 0;
}

.aboutme {
	margin-top: 20px;
}

.aboutme h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
	margin: 0;
}

.aboutme p {
    text-align: left;
    font-size: 13px;
    font-weight: 100;
    line-height: 1.1;
    color: #d8d8d8;
    margin: 0 0 15px 0;

}






/* SECTION LATEST MAGAZINES ARTICLES INDEX.COM */

.latestmagazines-section {
	margin-top: 10px;
	margin-bottom: 20px;
}

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

.latestmagazines-section h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
	margin: 0;
}

.latestmagazines-show-more {
	display: block;
	margin: 0 8px;
	padding: 6px 16px;
	background: transparent;
	border: 1px solid #978331;
	color: #978331;
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.25s ease;
}

.latestmagazines-show-more:hover {
	background: #978331;
	color: #000;
}

.latestmagazines-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 134px));
	gap: 20px 10px;
	justify-content: space-between;
	padding-top: 10px;
}

.latestmagazines-element {
	display: flex;
	flex-direction: column;
	background: transparent;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.latestmagazines-image-wrapper {
	height: 170px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.latestmagazines-image-wrapper a {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	justify-content: flex-start;
	text-decoration: none;
}

.latestmagazines-image-wrapper img {
	height: calc(100% - 2px);
	width: auto;
	max-width: calc(100% - 2px);
	border: 1px solid #ccc;
	box-sizing: border-box;
	display: block;
}

.latestmagazines-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
}

.latestmagazines-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestmagazines-details {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}




/* SECTION LATEST MAGAZINES ARTICLES INDEX.COM */

.latestarticles-section {
	margin-top: 10px;
	margin-bottom: 20px;
}

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

.latestarticles-header h1 {
	margin: 0;
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
}

.latestarticles-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px 10px;
	margin-top: 10px;
}

.latestarticles-element {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	width: max-content;
	background: transparent;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.latestarticles-image-wrapper {
	height: 170px;
	width: max-content;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.latestarticles-image-wrapper a {
	display: block;
	height: 100%;
	width: auto;
	text-decoration: none;
}


.latestarticles-image-wrapper img {
	display: block;
	height: 168px;
	width: auto;
	max-width: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
}


.latestarticles-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
	width: 100%;
}

.latestarticles-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestarticles-details {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestarticles-show-more {
	display: block;
	margin: 0 0 0 auto;
	padding: 6px 16px;
	background: transparent;
	border: 1px solid #978331;
	color: #978331;
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.25s ease;
}

.latestarticles-show-more:hover {
	background: #978331;
	color: #000;
}



/* SECTION LATEST POSTERS INDEX.COM */

.latestposters-section {
	margin-top: 10px;
	margin-bottom: 20px;
}

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

.latestposters-header h1 {
	margin: 0;
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
}

.latestposters-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px 10px;
	margin-top: 10px;
}

.latestposters-element {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	width: max-content;
	background: transparent;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.latestposters-image-wrapper {
	height: 170px;
	width: max-content;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.latestposters-image-wrapper a {
	display: block;
	height: 100%;
	width: auto;
	text-decoration: none;
}


.latestposters-image-wrapper img {
	display: block;
	height: 168px;
	width: auto;
	max-width: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
}


.latestposters-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
	width: 100%;
}

.latestposters-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestposters-details {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestposters-show-more {
	display: block;
	margin: 0 0 0 auto;
	padding: 6px 16px;
	background: transparent;
	border: 1px solid #978331;
	color: #978331;
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.25s ease;
}

.latestposters-show-more:hover {
	background: #978331;
	color: #000;
}




.archive-grid {
	display: grid;
	justify-content: start;
	align-content: start;
	grid-template-columns: repeat(5, 1fr);
	width: 100%;
	max-width: 1040px;
	margin-bottom: 20px;
	gap: 60px;
}

.archive-item {
	display: flex;
	flex-direction: column;
}

.item-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.item-icon {
	font-size: 24px;
	color: #978331;
	flex-shrink: 0;
	padding-top: 5px;
}

.item-title {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
}

.item-description {
	font-size: 13px;
	font-weight: 100;
	text-align: left;
	color: #d8d8d8;
	line-height: 1.5;
	margin: 0;
}

/* --- Adaptabilidad para pantallas pequeñas (Móviles y Tablets) --- */
@media (max-width: 900px) {
	.archive-grid {
		grid-template-columns: repeat(2, 1fr);
		/* Pasa a 2 columnas en pantallas medianas */
	}
}

@media (max-width: 600px) {
	.archive-grid {
		grid-template-columns: 1fr;
		/* Una sola columna en móviles */
	}
}







/* MAGAZINES.HTML */

.magazines-section {
	margin-top: 20px;
	margin-bottom: 40px;
	padding-left: clamp(20px, 5vw, 100px);
	padding-right: clamp(20px, 5vw, 100px);
}

.magazines-section h1 {
	text-align: center;
	font-size: 15px;
	color: #d8d8d8;
}

.magazines-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}

.magazines-grid img {
	display: block;
	height: 250px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	border: 1px solid #ccc;
	box-sizing: border-box;
	display: block;
}

/* INFORMACIÓN */
.magazines-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
	min-width: 0;
	width: 100%;
	padding-bottom: 10px;
}

/* TÍTULO */
.magazines-title {
	font-size: 18px;
	font-weight: 600;
	color: #d8d8d8;
	text-align: left;
	white-space: nowrap;
	overflow: visible;
}

/* DETAILS */
.magazines-details {
	font-size: 12px;
	color: #b3b3b3;
	font-weight: 400;
	text-align: left;
	white-space: nowrap;
	overflow: visible;
}





/* ARTICLES.HTML */

.articles-section {
	margin-top: 10px;
	margin-bottom: 20px;
	padding-left: clamp(20px, 5vw, 100px);
	padding-right: clamp(20px, 5vw, 100px);
}

.articles-section h1 {
	text-align: left;
	font-size: 15px;
	color: #d8d8d8;
}

/* GRID */

.articles-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px 10px;
	width: 100%;
}

/* CADA ELEMENTO */

.articles-item {
	flex: 0 0 auto;
	width: max-content;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* CELDA SUPERIOR — IMAGEN */

.articles-item-image {
	width: fit-content;
	height: 170px;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

/* ENLACE DE LA IMAGEN */

.articles-item-image a {
	display: flex;
	width: fit-content;
	height: 100%;
	align-items: flex-end;
	justify-content: flex-start;
	text-decoration: none;
}

/* IMAGEN */

.articles-item-image img {
	height: calc(100% - 2px);
	width: auto;
	max-width: calc(100% - 2px);
	border: 1px solid #ccc;
	box-sizing: border-box;
	display: block;
}

/* CELDA INFERIOR — INFORMACIÓN */

.articles-item-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
	min-width: 0;
}

/* TÍTULO */

.articles-item-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* DETAILS */

.articles-item-details {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* RESPONSIVE */

@media (max-width: 600px) {
	.content-section {
		padding-left: 20px;
		padding-right: 20px;
	}
}





/* BOOKSCATALOGUES.HTML */

.books-section {
	margin-top: 20px;
	margin-bottom: 40px;
	padding-left: clamp(20px, 5vw, 100px);
	padding-right: clamp(20px, 5vw, 100px);
}

.books-section h1 {
	text-align: center;
	font-size: 15px;
	color: #d8d8d8;
}

.books-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 5px;
}

.books-grid img {
	display: block;
	height: 250px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	border: 1px solid #ccc;
	box-sizing: border-box;
	display: block;
}

/* INFORMACIÓN */
.books-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
	min-width: 0;
	width: 100%;
	padding-bottom: 10px;
}

/* TÍTULO */
.books-title {
	font-size: 18px;
	font-weight: 600;
	color: #d8d8d8;
	text-align: left;
	white-space: nowrap;
	overflow: visible;
}

/* DETAILS */
.books-details {
	font-size: 12px;
	color: #b3b3b3;
	font-weight: 400;
	text-align: left;
	white-space: nowrap;
	overflow: visible;
}




/* MEDIA.HTML */

.media-section {
	margin-top: 20px;
	margin-bottom: 40px;
	padding-left: clamp(20px, 5vw, 100px);
	padding-right: clamp(20px, 5vw, 100px);
}

.media-section h1 {
	text-align: center;
	font-size: 15px;
	color: #d8d8d8;
}

/* GRID */
.media-grid {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 15px;
	width: 100%;
}

/* CADA ELEMENTO */
.media-item {
	display: flex;
	flex-direction: column;
	min-width: max-content;
	/* Fuerza a adaptarse al texto si es más ancho que la imagen */
	max-width: 100%;
}

/* CELDA SUPERIOR — IMAGEN */
.media-item-image {
	height: 250px;
	overflow: visible;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	/* Centra la imagen respecto al bloque si el texto es más ancho */
}

/* ENLACE DE LA IMAGEN */
.media-item-image a {
	display: flex;
	height: 100%;
	align-items: flex-end;
	justify-content: center;
	text-decoration: none;
}

/* IMAGEN */
.media-item-image img {
	height: calc(100% - 2px);
	width: auto;
	max-width: 100%;
	/* Evita que desborde si la pantalla es pequeña */
	border: 1px solid #ccc;
	box-sizing: border-box;
	display: block;
}

/* CELDA INFERIOR — INFORMACIÓN */
.media-item-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: center;
	min-width: 0;
	width: 100%;
}

/* TÍTULO */
.media-item-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	overflow: visible;
}

/* DETAILS */
.media-item-details {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	overflow: visible;
}

/* RESPONSIVE */
@media (max-width: 600px) {
	.content-section {
		padding-left: 20px;
		padding-right: 20px;
	}
}



/* PIE DE PAGINA - INUSE */

.footer {
	background-color: black;
	color: #d8d8d8;
	font-size: 12px;
	font-weight: 100;
	text-align: center;
	margin-top: 5px;
	width: 100%;
	min-width: 1000px;
	height: 70px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer a {
	color: #978331;
	text-decoration: none;
	margin: 0 5px;
}

.footer a:hover {
	text-decoration: underline;
}

.footer-container {
	max-width: 1200px;
	width: 100%;
	padding: 0 10px;
}



/* OVERLAY - INUSE */

#imageOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

#imageOverlay.active {
	display: flex;
}

#imageOverlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 0px;
	transition: transform 0.3s ease;
	transform-origin: center center;
	cursor: zoom-in;
}

#imageOverlay.zoomed img {
	cursor: grab;
}

#imageOverlay.zoomed img:active {
	cursor: grabbing;
}

/* 🔽 NUEVO: Flechas de navegación izquierda / derecha 🔽 */

#imageOverlay .nav-btn {
	position: absolute;
	top: 50%;
	font-size: 20px;
	color: #d8d8d8;
	cursor: pointer;
	user-select: none;
	padding: 10px 16px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	transform: translateY(-50%);
	transition: background 0.2s ease;
}

#imageOverlay .nav-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

#imageOverlay #prevBtn {
	left: 30px;
}

#imageOverlay #nextBtn {
	right: 30px;
}


/* 18+ notice */
.age-notice {
	font-size: 11px;
	line-height: 1.5;
	color: #777;
	text-align: center;
	margin: 0 0 10px;
}

.age-notice span {
	color: #777;
	font-weight: 600;
	margin-right: 5px;
}


/* ADDITIONAL LATEST CATEGORY SECTIONS */
.latestcategory-section {
	margin-top: 10px;
	margin-bottom: 20px;
}

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

.latestcategory-header h1 {
	margin: 0;
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
}

.latestcategory-show-more {
	display: block;
	margin: 0 0 0 auto;
	padding: 6px 16px;
	background: transparent;
	border: 1px solid #978331;
	color: #978331;
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: all 0.25s ease;
}

.latestcategory-show-more:hover {
	background: #978331;
	color: #000;
}

.latestcategory-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px 10px;
	margin-top: 10px;
}

.latestcategory-element {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	width: max-content;
	background: transparent;
	transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.latestcategory-image-wrapper {
	height: 170px;
	width: max-content;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}

.latestcategory-image-wrapper a {
	display: block;
	height: 100%;
	width: auto;
	text-decoration: none;
}

.latestcategory-image-wrapper img {
	display: block;
	height: 168px;
	width: auto;
	max-width: none;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.latestcategory-info {
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: left;
	width: 100%;
}

.latestcategory-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestcategory-details {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.latestcategory-section .latestcategory-element:nth-child(n+8) {
	display: none;
}

.latestcategory-section.expanded .latestcategory-element:nth-child(n+8) {
	display: flex;
}


/* =========================================================
   HOMEPAGE ENHANCEMENTS
   ========================================================= */

/* Subtle image hover effect for homepage collection cards */
.latestmagazines-image-wrapper img.zoomable,
.latestarticles-image-wrapper img.zoomable,
.latestposters-image-wrapper img.zoomable,
.latestcategory-image-wrapper img.zoomable {
	transition: transform 0.3s ease, filter 0.3s ease;
	transform-origin: center center;
}

.latestmagazines-image-wrapper a:hover img.zoomable,
.latestarticles-image-wrapper a:hover img.zoomable,
.latestposters-image-wrapper a:hover img.zoomable,
.latestcategory-image-wrapper a:hover img.zoomable {
	transform: scale(1.035);
	filter: brightness(1.08);
}

/* COVER OF THE DAY */
.cover-of-day-section {
	margin: 10px 0 25px;
	text-align: center;
}

.cover-of-day-header h1,
.archive-timeline-header h1,
.newsletter-header h1 {
	font-size: 16px;
	font-weight: 500;
	color: #978331;
	margin: 10px 0 18px;
	padding-bottom: 0;
}

.cover-of-day-content {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.cover-of-day-link {
	display: inline-block;
	text-decoration: none;
}

.cover-of-day-image {
	display: block;
	max-height: 420px;
	max-width: min(300px, 80vw);
	width: auto;
	height: auto;
	border: 1px solid #ccc;
	box-sizing: border-box;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.cover-of-day-link:hover .cover-of-day-image {
	transform: scale(1.025);
	filter: brightness(1.08);
}

.cover-of-day-details {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	text-align: center;
}

.cover-of-day-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: #d8d8d8;
	line-height: 1.5;
}

.cover-of-day-meta {
	font-size: 0.65rem;
	color: #767676;
	font-weight: 400;
	line-height: 1.5;
}

.cover-of-day-loading,
.cover-of-day-error {
	font-size: 0.65rem;
	color: #767676;
	letter-spacing: 0.04em;
}

/* TRADE / CONTACT — LEFT COLUMN */
.trade-contact-section {
	margin: 0 0 22px;
	text-align: left;
}

.trade-contact-section h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	font-family: inherit;
	font-style: normal;
	color: #978331;
	margin: 0 0 14px;
}

.trade-contact-section p {
	text-align: left;
	font-size: 13px;
	font-weight: 100;
	font-style: italic;
	line-height: 1.1;
	color: #d8d8d8;
	margin: 0;
}

/* COVER OF THE DAY — LEFT COLUMN */
.left-column-divider {
	height: 1px;
	background: #222;
	margin: 22px 0 20px;
}

.left-column .cover-of-day-section {
	margin: 0 0 25px;
	text-align: left;
}

.left-column .cover-of-day-header h1 {
	text-align: left;
	font-size: 14px;
	font-weight: 300;
	color: #978331;
	margin: 0 0 16px;
}

.left-column .cover-of-day-content {
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.left-column .cover-of-day-image {
	max-height: 330px;
	max-width: 100%;
	width: auto;
	height: auto;
}

.left-column .cover-of-day-details {
	margin-top: 10px;
	text-align: left;
}

.left-column .cover-of-day-title {
	font-size: 12px;
	line-height: 1.45;
}

.left-column .cover-of-day-meta {
	font-size: 10px;
	line-height: 1.45;
}

/* ARCHIVE TIMELINE */
.archive-timeline-section {
	margin: 10px 0 25px;
}

.archive-timeline {
	display: flex;
	flex-direction: column;
	gap: 1px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 5px 0;
}

.archive-timeline-row {
	display: grid;
	grid-template-columns: 80px 1fr;
	align-items: center;
	min-height: 34px;
	border-bottom: 1px solid #181818;
}

.archive-timeline-row:last-child {
	border-bottom: 0;
}

.archive-timeline-year {
	font-size: 12px;
	font-weight: 500;
	color: #978331;
	letter-spacing: 0.04em;
}

.archive-timeline-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 7px;
}

.archive-timeline-categories a {
	display: inline-block;
	padding: 4px 7px;
	background: #080808;
	border: 1px solid #252525;
	color: #767676;
	font-size: 9px;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.archive-timeline-categories a:hover {
	color: #978331;
	border-color: #978331;
	background: #000;
}

.archive-timeline-general {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #2d2a1b;
}

.archive-timeline-collection-label {
	font-size: 10px;
	line-height: 1.2;
}

/* NEWSLETTER */
.newsletter-section {
	margin: 10px 0 30px;
	text-align: center;
}

.newsletter-description {
	margin: 0 auto 15px;
	max-width: 600px;
	font-size: 0.7rem;
	line-height: 1.6;
	color: #767676;
}

.newsletter-form {
	max-width: 620px;
	margin: 0 auto;
}

.newsletter-form-row {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 8px;
}

.newsletter-form-row input[type="email"] {
	flex: 1;
	min-width: 0;
	height: 36px;
	box-sizing: border-box;
	padding: 7px 12px;
	background: #080808;
	border: 1px solid #444;
	border-radius: 0;
	color: #d8d8d8;
	font-family: inherit;
	font-size: 11px;
	outline: none;
}

.newsletter-form-row input[type="email"]::placeholder {
	color: #666;
}

.newsletter-form-row input[type="email"]:focus {
	border-color: #978331;
}

.newsletter-form-row button {
	height: 36px;
	padding: 0 18px;
	background: transparent;
	border: 1px solid #978331;
	color: #978331;
	font-family: inherit;
	font-size: 9px;
	font-weight: 400;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

.newsletter-form-row button:hover {
	background: #978331;
	color: #000;
}

.newsletter-consent {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 7px;
	margin-top: 10px;
	font-size: 9px;
	line-height: 1.4;
	color: #666;
	cursor: pointer;
}

.newsletter-consent input {
	margin: 1px 0 0;
	accent-color: #978331;
}

.newsletter-honeypot {
	display: none;
}

@media (max-width: 700px) {
	.newsletter-form-row {
		flex-direction: column;
	}

	.newsletter-form-row button {
		width: 100%;
	}

	.archive-timeline-row {
		grid-template-columns: 60px 1fr;
	}

	.archive-timeline-categories {
		gap: 4px 5px;
	}

	.archive-timeline-categories a {
		font-size: 8px;
		padding: 4px 5px;
	}
}
