/*
Theme Name: Discard Sealion
Theme URI: https://github.com/dekmeister/discard-sealion
Author: Declan Walsh
Author URI: https://github.com/dekmeister
Description: A minimal WordPress theme for cataloguing and reviewing CD collections with a simple "Kept / Deleted" verdict system.
Tags: white, one-column, custom-logo, custom-background, featured-images, blog, personal
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: discard-sealion

Discard Sealion WordPress Theme, Copyright 2026 Declan Walsh
Discard Sealion is distributed under the terms of the GNU GPL v2 or later.
*/

/* ===================================
   CSS Custom Properties
   =================================== */

:root {
	/* Colours */
	--color-background: #fafafa;
	--color-text: #333333;
	--color-text-light: #666666;
	--color-border: #e0e0e0;
	--color-keep: #2e7d32;
	--color-delete: #c62828;
	--color-link: #1976d2;
	--color-link-hover: #1565c0;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 1.5rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;

	/* Typography */
	--font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	--font-size-base: 1rem;
	--font-size-lg: 1.25rem;
	--font-size-xl: 1.5rem;
	--font-size-2xl: 2rem;
	--line-height-base: 1.6;
	--line-height-tight: 1.2;

	/* Grid */
	--grid-columns-mobile: 2;
	--grid-columns-tablet: 3;
	--grid-columns-large: 4;
	--grid-columns-desktop: 5;
	--grid-gap: var(--spacing-md);
}

/* ===================================
   Reset & Base Styles
   =================================== */

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

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--color-text);
	background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 var(--spacing-sm) 0;
	line-height: var(--line-height-tight);
	font-weight: 600;
}

h1 {
	font-size: var(--font-size-2xl);
}

h2 {
	font-size: var(--font-size-xl);
}

h3 {
	font-size: var(--font-size-lg);
}

p {
	margin: 0 0 var(--spacing-sm) 0;
}

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

a:hover {
	color: var(--color-link-hover);
	text-decoration: underline;
}

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

/* ===================================
   Header Styles
   =================================== */

.site-header {
	background-color: #ffffff;
	border-bottom: 1px solid var(--color-border);
	padding: var(--spacing-md) 0;
	margin-bottom: var(--spacing-lg);
}

.header-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-md);
}

.site-branding {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.custom-logo-link {
	display: block;
	line-height: 1;
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

.site-title {
	margin: 0;
	font-size: var(--font-size-xl);
	font-weight: 700;
}

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

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

.site-description {
	margin: 0.25rem 0 0 0;
	font-size: var(--font-size-base);
	color: var(--color-text-light);
}

/* ===================================
   Navigation Styles
   =================================== */

.site-navigation {
	display: flex;
	align-items: center;
}

.nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--spacing-md);
}

.menu-item {
	margin: 0;
}

.menu-item a {
	color: var(--color-text);
	font-weight: 500;
	padding: var(--spacing-xs) var(--spacing-sm);
	display: block;
	transition: color 0.2s ease;
}

.menu-item a:hover {
	color: var(--color-link);
	text-decoration: none;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--spacing-xs);
	flex-direction: column;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.menu-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-text);
	border-radius: 2px;
	transition: background-color 0.2s ease;
}

.menu-toggle:hover .menu-toggle-bar {
	background-color: var(--color-link);
}

/* ===================================
   Main Content Area
   =================================== */

.site-main {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	min-height: 60vh;
}

/* ===================================
   Footer Styles
   =================================== */

.site-footer {
	background-color: #ffffff;
	border-top: 1px solid var(--color-border);
	padding: var(--spacing-lg) 0;
	margin-top: var(--spacing-xl);
}

.footer-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: var(--spacing-lg);
}

.footer-main {
	text-align: center;
	flex: 1;
}

.footer-stats {
	margin: 0 0 0.5rem 0;
	color: var(--color-text);
	font-size: 0.875rem;
	font-weight: 500;
}

.footer-stats a {
	color: var(--color-text);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.footer-stats a:hover {
	border-bottom-color: var(--color-text);
}

.footer-text {
	margin: 0;
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.footer-related-sites {
	text-align: right;
	flex-shrink: 0;
}

.footer-related-sites h3 {
	font-size: var(--font-size-base);
	font-weight: 600;
	margin: 0 0 var(--spacing-sm) 0;
	color: var(--color-text);
}

.footer-related-sites ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: var(--spacing-xs) var(--spacing-md);
}

.footer-related-sites a {
	color: var(--color-link);
	text-decoration: none;
	transition: color 0.2s ease;
}

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

/* ===================================
   Homepage Grid Styles
   =================================== */

.cd-grid-container {
	margin-bottom: var(--spacing-xl);
}

.archive-header {
	margin-bottom: var(--spacing-lg);
	text-align: center;
}

.archive-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
}

.cd-grid {
	display: grid;
	grid-template-columns: repeat( var(--grid-columns-desktop), 1fr );
	gap: var(--grid-gap);
}

.cd-grid-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background-color: #f5f5f5;
	border-radius: 4px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cd-grid-item:hover {
	transform: translateY( -4px );
	box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.15 );
}

.cd-grid-item-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

.cd-cover {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cd-cover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cd-cover-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient( 135deg, #e0e0e0 0%, #f5f5f5 100% );
}

.cd-cover-placeholder-text {
	font-size: 4rem;
	color: #bdbdbd;
	font-weight: 300;
}

.cd-grid-item-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.8 ) 0%, rgba( 0, 0, 0, 0 ) 100% );
	padding: var(--spacing-md);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.cd-grid-item:hover .cd-grid-item-overlay {
	opacity: 1;
}

.cd-grid-item-title {
	margin: 0;
	color: #ffffff;
	font-size: var(--font-size-base);
	font-weight: 600;
	line-height: var(--line-height-tight);
}

/* Empty State Styles */
.no-posts {
	text-align: center;
	padding: var(--spacing-xl) var(--spacing-md);
	max-width: 600px;
	margin: 0 auto;
}

.no-posts-title {
	margin-bottom: var(--spacing-md);
	color: var(--color-text-light);
}

.no-posts-text {
	font-size: var(--font-size-lg);
	color: var(--color-text-light);
}

.no-posts-text a {
	color: var(--color-link);
	text-decoration: underline;
}

.no-posts-text a:hover {
	color: var(--color-link-hover);
}

/* ===================================
   Single CD Review Styles
   =================================== */

.cd-single {
	margin-bottom: var(--spacing-xl);
}

.cd-single-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	max-width: 1000px;
	margin: 0 auto;
}

.cd-single-image {
	position: sticky;
	top: var(--spacing-lg);
	align-self: start;
}

.cd-single-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.1 );
}

.cd-single-details {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.cd-single-header {
	border-bottom: 2px solid var(--color-border);
	padding-bottom: var(--spacing-md);
}

.cd-single-title {
	margin-bottom: var(--spacing-sm);
	font-size: 2.5rem;
	line-height: var(--line-height-tight);
}

.cd-single-artist {
	margin: 0 0 var(--spacing-md) 0;
	font-size: var(--font-size-xl);
	color: var(--color-text-light);
	font-weight: 500;
}

.cd-single-verdict {
	margin-top: var(--spacing-sm);
}

.verdict {
	display: inline-block;
	padding: var(--spacing-xs) var(--spacing-md);
	border-radius: 4px;
	font-weight: 600;
	font-size: var(--font-size-lg);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.verdict-keep {
	background-color: var(--color-keep);
	color: #ffffff;
}

.verdict-delete {
	background-color: var(--color-delete);
	color: #ffffff;
}

.verdict-pending {
	background-color: var(--color-link);
	color: #ffffff;
}

.cd-single-thoughts {
	margin: var(--spacing-md) 0;
}

.cd-thoughts-heading {
	margin-bottom: var(--spacing-md);
	font-size: var(--font-size-xl);
	color: var(--color-text);
}

.cd-thoughts-content {
	line-height: var(--line-height-base);
	font-size: var(--font-size-lg);
}

.cd-thoughts-content p {
	margin-bottom: var(--spacing-md);
}

.cd-thoughts-content p:last-child {
	margin-bottom: 0;
}

.cd-single-footer {
	margin-top: auto;
	padding-top: var(--spacing-md);
	border-top: 1px solid var(--color-border);
}

.cd-single-date {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-text-light);
}

/* ===================================
   Comments Styles
   =================================== */

.comments-area {
	max-width: 1000px;
	margin: var(--spacing-xl) auto 0;
	padding-top: var(--spacing-xl);
	border-top: 2px solid var(--color-border);
}

.comments-title {
	margin-bottom: var(--spacing-lg);
	font-size: var(--font-size-xl);
}

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

.comment-list .comment {
	margin-bottom: var(--spacing-lg);
	padding-bottom: var(--spacing-lg);
	border-bottom: 1px solid var(--color-border);
}

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

.comment-body {
	display: flex;
	gap: var(--spacing-md);
}

.comment-author .avatar {
	border-radius: 50%;
	flex-shrink: 0;
}

.comment-content-wrap {
	flex: 1;
}

.comment-author {
	margin-bottom: var(--spacing-xs);
}

.comment-author .fn {
	font-weight: 600;
	font-size: var(--font-size-lg);
	font-style: normal;
	color: var(--color-text);
}

.comment-metadata {
	margin-bottom: var(--spacing-sm);
	font-size: 0.875rem;
}

.comment-metadata a {
	color: var(--color-text-light);
	text-decoration: none;
}

.comment-metadata a:hover {
	color: var(--color-link);
	text-decoration: underline;
}

.comment-content p {
	margin-bottom: var(--spacing-sm);
}

.comment-content p:last-child {
	margin-bottom: 0;
}

.reply {
	margin-top: var(--spacing-sm);
}

.comment-reply-link {
	font-size: 0.875rem;
	color: var(--color-link);
	text-decoration: none;
	font-weight: 500;
}

.comment-reply-link:hover {
	text-decoration: underline;
}

.comment-respond {
	margin-top: var(--spacing-xl);
}

.comment-reply-title {
	margin-bottom: var(--spacing-md);
	font-size: var(--font-size-xl);
}

.comment-form {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
	display: flex;
	flex-direction: column;
}

.comment-form label {
	margin-bottom: var(--spacing-xs);
	font-weight: 500;
	color: var(--color-text);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	padding: var(--spacing-sm);
	border: 1px solid var(--color-border);
	border-radius: 4px;
	font-family: var(--font-family);
	font-size: var(--font-size-base);
	transition: border-color 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--color-link);
}

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

.comment-submit-button {
	align-self: flex-start;
	padding: var(--spacing-sm) var(--spacing-lg);
	background-color: var(--color-link);
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: var(--font-size-base);
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.comment-submit-button:hover {
	background-color: var(--color-link-hover);
}

.comment-navigation {
	margin: var(--spacing-lg) 0;
	display: flex;
	justify-content: space-between;
}

.no-comments {
	color: var(--color-text-light);
	font-style: italic;
}

/* Nested comments */
.comment-list .children {
	list-style: none;
	margin-left: var(--spacing-xl);
	margin-top: var(--spacing-lg);
}

/* ===================================
   Recent Comments Page Styles
   =================================== */

.rc-page-wrap {
	max-width: 1280px;
	margin: 0 auto var(--spacing-xl);
	padding: 0 var(--spacing-md);
}

.rc-subtitle {
	margin: var(--spacing-xs) 0 var(--spacing-sm);
	color: var(--color-text-light);
	font-size: 0.875rem;
}

.rc-chips {
	display: flex;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-md);
}

.rc-chip {
	padding: 4px 14px;
	border-radius: 20px;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-text);
	cursor: pointer;
	font-size: 0.875rem;
	font-family: var(--font-family);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.rc-chip[aria-pressed="true"],
.rc-chip.is-active {
	background: var(--color-link);
	color: #ffffff;
	border-color: var(--color-link);
}

.rc-list {
	display: flex;
	flex-direction: column;
}

.rc-row {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	column-gap: 14px;
	align-items: start;
	padding: 12px 0;
	border-bottom: 1px dashed var(--color-border);
	transition: background-color 0.15s ease;
}

.rc-row:hover {
	background: rgba( 0, 0, 0, 0.02 );
}

.rc-thumb {
	display: block;
	flex-shrink: 0;
}

.rc-thumb img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.rc-body {
	min-width: 0;
}

.rc-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 0 var(--spacing-xs);
	font-size: 0.875rem;
}

.rc-meta .avatar {
	border-radius: 50%;
	flex-shrink: 0;
}

.rc-author {
	font-weight: 600;
	color: var(--color-text);
}

.rc-sep {
	color: var(--color-text-light);
}

.rc-verb {
	color: var(--color-text-light);
}

.rc-cd-link {
	color: var(--color-link);
	text-decoration: none;
}

.rc-cd-link:hover {
	text-decoration: underline;
	color: var(--color-link-hover);
}

.rc-cd-title {
	font-style: italic;
}

.rc-cd-artist {
	color: var(--color-text-light);
}

.rc-reply-badge {
	font-size: 0.8rem;
	color: var(--color-text-light);
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 1px 8px;
	white-space: nowrap;
}

.rc-text {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-clamp: 3;
	color: var(--color-text);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
}

.rc-text p {
	margin: 0;
}

.rc-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: var(--spacing-xs);
	font-size: 0.875rem;
	white-space: nowrap;
}

.rc-time {
	color: var(--color-text-light);
}

.rc-reply-link {
	color: var(--color-link);
	text-decoration: none;
}

.rc-reply-link:hover {
	text-decoration: underline;
	color: var(--color-link-hover);
}

.rc-pagination {
	text-align: right;
	margin-top: var(--spacing-lg);
}

.button-pill {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-lg);
	background-color: var(--color-link);
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: var(--font-size-base);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.button-pill:hover {
	background-color: var(--color-link-hover);
	color: #ffffff;
}

@media ( max-width: 600px ) {
	.rc-row {
		grid-template-columns: 56px 1fr;
		grid-template-areas:
			"thumb meta"
			"body  body"
			"actions actions";
		column-gap: 10px;
	}

	.rc-thumb {
		grid-area: thumb;
	}

	.rc-thumb img {
		width: 56px;
		height: 56px;
	}

	.rc-meta {
		grid-area: meta;
	}

	.rc-body {
		grid-area: body;
	}

	.rc-actions {
		grid-area: actions;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: wrap;
	}
}

/* ===================================
   Page Styles
   =================================== */

.page-content {
	max-width: 800px;
	margin: 0 auto var(--spacing-xl);
}

.page-header {
	margin-bottom: var(--spacing-lg);
	padding-bottom: var(--spacing-md);
	border-bottom: 2px solid var(--color-border);
}

.page-title {
	margin: 0;
	font-size: 2.5rem;
	line-height: var(--line-height-tight);
}

.page-body {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
}

.page-featured-image {
	margin-bottom: var(--spacing-md);
}

.page-featured-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.page-content-text {
	line-height: var(--line-height-base);
	font-size: var(--font-size-lg);
}

.page-content-text p {
	margin-bottom: var(--spacing-md);
}

.page-content-text p:last-child {
	margin-bottom: 0;
}

.page-content-text h2 {
	margin-top: var(--spacing-lg);
	margin-bottom: var(--spacing-md);
}

.page-content-text h3 {
	margin-top: var(--spacing-md);
	margin-bottom: var(--spacing-sm);
}

.page-content-text ul,
.page-content-text ol {
	margin-bottom: var(--spacing-md);
	padding-left: var(--spacing-lg);
}

.page-content-text li {
	margin-bottom: var(--spacing-xs);
}

.page-content-text a {
	color: var(--color-link);
	text-decoration: underline;
}

.page-content-text a:hover {
	color: var(--color-link-hover);
}

/* ===================================
   Responsive Styles
   =================================== */

/* Large breakpoint: 5 → 4 columns */
@media ( max-width: 1400px ) {
	.cd-grid {
		grid-template-columns: repeat( var(--grid-columns-large), 1fr );
	}
}

/* Tablet breakpoint: 4 → 3 columns + single-page layout */
@media ( max-width: 999px ) {
	.cd-grid {
		grid-template-columns: repeat( var(--grid-columns-tablet), 1fr );
	}
}

@media ( max-width: 1199px ) {
	.cd-single-content {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.cd-single-image {
		position: relative;
		top: 0;
		order: 2;
	}

	.cd-single-details {
		order: 1;
	}

	.cd-single-title {
		font-size: 2rem;
	}
}

/* Mobile breakpoint */
@media ( max-width: 767px ) {
	.header-container {
		flex-direction: row;
		align-items: center;
	}

	.site-navigation {
		flex: 1;
		flex-wrap: wrap;
		justify-content: flex-end;
		width: auto;
	}

	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		flex-basis: 100%;
		justify-content: flex-start;
	}

	.site-navigation.is-open .nav-menu {
		display: flex;
	}

	.cd-grid {
		grid-template-columns: repeat( var(--grid-columns-mobile), 1fr );
	}

	.cd-cover-placeholder-text {
		font-size: 3rem;
	}

	.cd-single-title {
		font-size: 1.75rem;
	}

	.cd-single-artist {
		font-size: var(--font-size-lg);
	}

	.verdict {
		font-size: var(--font-size-base);
	}

	.cd-thoughts-content {
		font-size: var(--font-size-base);
	}

	.footer-container {
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-md);
	}

	.footer-related-sites {
		text-align: center;
	}

	.footer-related-sites ul {
		justify-content: center;
	}

	.comment-list .children {
		margin-left: var(--spacing-md);
	}

	.comment-body {
		flex-direction: column;
		gap: var(--spacing-sm);
	}

	.page-title {
		font-size: 1.75rem;
	}

	.page-content-text {
		font-size: var(--font-size-base);
	}
}

/* ===================================
   NO DISC Memorial Banner
   =================================== */

.nodisc-banner {
	background: linear-gradient(180deg, #2a2a28 0%, #1a1a18 100%);
	padding: 12px 28px;
	border-bottom: 2px solid #0a0a0a;
	font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
	position: relative;
	z-index: 100;
}

.nodisc-lcd {
	background: #9ab89a;
	border: 2px solid #1a1a18;
	border-radius: 2px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 18px;
	box-shadow:
		inset 0 2px 8px rgba(0, 0, 0, .2),
		inset 0 0 2px rgba(0, 0, 0, .3);
	color: #1a2a1a;
	position: relative;
	overflow: hidden;
}

.nodisc-lcd::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		0deg,
		rgba(0, 0, 0, .08) 0 1px,
		transparent 1px 3px
	);
	pointer-events: none;
}

.nodisc-meta {
	font-size: 9px;
	letter-spacing: 1.5px;
	opacity: .7;
}

.nodisc-meta--r {
	text-align: right;
}

.nodisc-readout {
	flex: 1;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 6px;
}

.nodisc-blink {
	animation: nodisc-blink 1.2s steps(1) infinite;
}

@keyframes nodisc-blink {
	0%, 49%   { opacity: 1; }
	50%, 100% { opacity: .15; }
}

.nodisc-caption {
	margin-top: 6px;
	font: 9px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #8a8a86;
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.nodisc-blink {
		animation: none;
		opacity: 1;
	}
}

@media (max-width: 480px) {
	.nodisc-banner {
		padding: 10px 14px;
	}

	.nodisc-lcd {
		gap: 10px;
		padding: 8px 12px;
	}

	.nodisc-readout {
		font-size: 15px;
		letter-spacing: 3px;
	}

	.nodisc-meta {
		font-size: 8px;
		letter-spacing: 1px;
	}
}

/* ===================================
   WordPress Core Classes
   =================================== */

.alignleft {
	float: left;
	margin: 0 var(--spacing-sm) var(--spacing-sm) 0;
}

.alignright {
	float: right;
	margin: 0 0 var(--spacing-sm) var(--spacing-sm);
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%;
	margin-bottom: var(--spacing-sm);
}

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

.wp-caption-text,
.gallery-caption {
	font-size: 0.875rem;
	color: var(--color-text-light);
	text-align: center;
	margin-top: var(--spacing-xs);
}

.sticky {
	display: block;
}

.bypostauthor {
	display: block;
}

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

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
