/**
 * Assetalk — lightweight stylesheet.
 * System-first font stack for zero network cost; Google Fonts are optional
 * enhancements loaded async and only used when the browser finishes them.
 */

:root {
	--color-bg: #ffffff;
	--color-surface: #f6f7f8;
	--color-text: #1c1e21;
	--color-text-soft: #5b6068;
	--color-accent: #c8102e;
	--color-accent-soft: #fbeaea;
	--color-accent-hover: #9b0e28;
	--color-border: #e3e5e8;
	--color-focus: #2f6fd6;
	--color-inverse: #ffffff;

	/* Fixed brand amber: CTA button, search, 404 number and hero accents.
	   Deliberately not wired into the Colors section — it is a brand
	   constant, not a themable scheme color. */
	--color-amber: #ffd000;

	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	--font-serif: 'Source Serif Pro', Georgia, 'Times New Roman', serif;

	--content-width: 1120px;
	--text-width: 760px;
	--radius: 12px;
	--gap: 24px;
}

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

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

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 17px;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--color-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
	color: var(--color-accent-hover);
}

:focus-visible {
	outline: 2px solid var(--color-focus);
	outline-offset: 2px;
}

.container {
	width: 100%;
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: 20px;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--color-text);
	color: var(--color-inverse);
	padding: 10px 16px;
}

.skip-link:focus {
	left: 8px;
	top: 8px;
	color: var(--color-inverse);
}

/* =========================================================
   404 PAGE
========================================================= */

.assetalk-404 {
    min-height: calc(100vh - 150px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 20px;

    background: #ffffff;
}


.assetalk-404-container {
    width: 100%;
    max-width: 800px;

    text-align: center;
}

.assetalk-404-number {
    margin: 0;

    color: var(--color-amber);

    font-size: clamp(120px, 20vw, 200px);

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -8px;
}

.assetalk-404 h1 {
    margin: 35px 0 15px;

    color: #333333;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;
}

.assetalk-404 p {
    margin: 0 auto;

    max-width: 650px;

    color: #444444;

    font-size: 18px;

    line-height: 1.6;
}
.assetalk-404-button {
    display: inline-block;

    margin-top: 30px;

    padding: 13px 25px;

    border-radius: 5px;

    background: #111111;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.assetalk-404-button:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-2px);
}


@media (max-width: 600px) {

    .assetalk-404 {
        min-height: calc(100vh - 120px);
        padding: 50px 20px;
    }

    .assetalk-404-number {
        font-size: 110px;
        letter-spacing: -5px;
    }

    .assetalk-404 h1 {
        margin-top: 25px;
        font-size: 28px;
    }

    .assetalk-404 p {
        font-size: 15px;
    }

    .assetalk-404-button {
        margin-top: 25px;
        padding: 12px 22px;
    }

}

/* =========================================================
  HEADER
========================================================= */

.assetalk-header {
    width: 100%;
    height: 98px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 9999;
}

.assetalk-header-inner {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
}

.assetalk-brand {
    width: 210px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.assetalk-brand .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.assetalk-brand .custom-logo {
    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 200px !important;
    max-height: 150px !important;

    object-fit: contain;
}

.assetalk-logo-custom {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
}

.assetalk-logo {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #111111;
}

.assetalk-logo-text {
    color: #111111;
    font-weight: 700;
}

.assetalk-logo-tagline {
    display: block;
    max-width: 220px;
    margin-top: 2px;
    overflow: hidden;
    color: #888888;
    font-size: 11px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.assetalk-navigation { 
	display: flex; 
	align-items: center; 
	height: 100%; 
	margin-left: 55px; 
	flex: 1; 
} 
.assetalk-menu { 
	display: flex; 
	align-items: center; 
	height: 100%; 
	margin: 0; 
	padding: 0; 
	gap: 38px; 
	list-style: none; 
	flex: 1; 
} 
.assetalk-menu > li { 
	position: relative; 
	height: 100%; display: 
	flex; align-items: center; 
} 
.assetalk-menu > li > a { 
	height: 100%; 
	display: flex; 
	align-items: center; 
	color: #111111; 
	font-size: 15px; 
	font-weight: 600; 
	text-decoration: none; 
	white-space: nowrap; 
}
	 .assetalk-menu > li > a:hover { 
		color: #555555; 
	}

.assetalk-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    width: 210px;
    margin: 0;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 7px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
    z-index: 99999;
}

.assetalk-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.assetalk-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    color: #111111;
    font-size: 14px;
    text-decoration: none;
    border-radius: 5px;
}


.assetalk-menu .sub-menu a:hover {
    background: #f5f5f5;
}

.assetalk-header-actions {
    height: 100%;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.assetalk-search-button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    border-radius: 50%;
    color: #111111;
    text-decoration: none;
}

.assetalk-search-button:hover {
    background: #e9e9e9;
}
.assetalk-search-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
.assetalk-divider {
    width: 1px;
    height: 40px;
    margin: 0 20px;
    background: #d8d8d8;
}
.assetalk-trade {
    height: 45px;
    margin-left: 22px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-amber);
    border-radius: 6px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.assetalk-trade:hover {
    background: #f2c400;
    color: #000000;
}
.assetalk-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(255, 255, 255, .98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease;
}

.assetalk-search-overlay:target {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.assetalk-search-box {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 100px;
}

.assetalk-search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.assetalk-search-top h2 {
    margin: 0;
    font-size: 32px;
    color: #111111;
}

.assetalk-search-close {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 50%;
    color: #111111;
    font-size: 30px;
    text-decoration: none;
}

.assetalk-search-form {
    display: flex;
    gap: 10px;
}

.assetalk-search-input {
    height: 65px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border: 2px solid #111111;
    border-radius: 7px;
    background: #ffffff;
}

.assetalk-search-input svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #555555;
    stroke-width: 1.8;
}

.assetalk-search-input input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: inherit;
    font-size: 18px;
}

.assetalk-search-form button {
    height: 65px;
    padding: 0 28px;
    border: 0;
    border-radius: 7px;
    background: var(--color-amber);
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 1100px) {

    .assetalk-menu {
        gap: 20px;
    }

    .assetalk-navigation {
        margin-left: 30px;
    }

    .assetalk-logo-text {
        font-size: 24px;
    }

    .assetalk-divider {
        margin: 0 12px;
    }

}


@media (max-width: 900px) {

    .assetalk-navigation {
        display: none;
    }

    /* The toggle is the last item in the header row on mobile. */
    .assetalk-menu-toggle {
        margin-left: auto;
    }

}

@media (max-width: 600px) {

    .assetalk-header {
        height: 65px;
    }

    .assetalk-header-inner {
        padding: 0 10px;
    }

    /* The fixed 210px brand no longer fits once the header shrinks to
       65px and the actions (hamburger + search + language + trade) have
       to share the row. Let it flex, cap the logo, and truncate the
       site name so nothing spills or scrolls horizontally. */
    .assetalk-brand {
        width: auto;
        min-width: 0;
        flex: 0 1 auto;
        height: 65px;
        justify-content: flex-start;
        padding: 0 6px 0 2px;
    }

    .assetalk-brand .custom-logo {
        max-width: 140px !important;
        max-height: 40px !important;
    }

    .assetalk-logo-mark {
        width: 20px;
        height: 20px;
    }

    .assetalk-logo-text {
        font-size: 19px;
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .assetalk-logo-tagline {
        display: none;
    }

    .assetalk-search-button {
        width: 38px;
        height: 38px;
    }

    .assetalk-signin {
        display: none;
    }

    .assetalk-divider {
        display: none;
    }

    .assetalk-trade {
        height: 36px;
        margin-left: 6px;
        padding: 0 10px;
        font-size: 14px;
    }

    .assetalk-search-box {
        width: calc(100% - 20px);
        padding-top: 45px;
    }

    .assetalk-search-form {
        display: block;
    }

    .assetalk-search-input {
        height: 50px;
    }

    .assetalk-search-form button {
        width: 100%;
        margin-top: 8px;
        height: 48px;
    }

}
/* ------------------------------------------------------------------ */
/* Page intro                                                          */
/* ------------------------------------------------------------------ */

.page-intro {
	max-width: var(--text-width);
	margin: 48px auto 40px;
	text-align: center;
}

.page-title {
	font-family: var(--font-serif);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 600;
	letter-spacing: -0.7px;
	line-height: 1.15;
	margin: 0 0 12px;
}

.page-subtitle,
.archive-description {
	margin: 0;
	font-size: 18px;
	color: var(--color-text-soft);
}

/* ------------------------------------------------------------------ */
/* Post grid                                                           */
/* ------------------------------------------------------------------ */

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--gap);
	margin-bottom: 56px;
}

/* Homepage: latest posts */
.home-posts {
	margin-top: 48px;
}

.home-posts-heading {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--color-border);
}

.home-posts-title {
	margin: 0;
	font-family: var(--font-serif);
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -0.2px;
	color: var(--color-text);
}

.home-posts-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-accent);
	text-decoration: none;
}

.home-posts-link:hover {
	color: var(--color-accent-hover);
	text-decoration: underline;
}

.card {
	display: flex;
	flex-direction: column;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.card .entry-thumb,
.single-thumb {
	width: 100%;
	aspect-ratio: 8 / 5;
	object-fit: cover;
	background: var(--color-surface);
}

.card .entry-thumb img,
.single-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 13px;
	color: var(--color-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.entry-meta .sep {
	margin-inline: 6px;
}

.card-title {
	font-family: var(--font-serif);
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: -0.2px;
	margin: 10px 0 8px;
}

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

.card-title a:hover {
	color: var(--color-accent);
}

.card-excerpt {
	font-size: 15px;
	color: var(--color-text-soft);
	flex: 1;
	margin-bottom: 16px;
}

.card-excerpt p {
	margin: 0;
}

.card-link {
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	align-self: flex-start;
}

/* ------------------------------------------------------------------ */
/* Single post                                                         */
/* ------------------------------------------------------------------ */

.single-article {
	max-width: var(--text-width);
	margin-inline: auto;
	padding-top: 40px;
}

.entry-header .entry-meta {
	margin-bottom: 16px;
}

.entry-title {
	font-family: var(--font-serif);
	font-size: clamp(30px, 4.5vw, 45px);
	font-weight: 600;
	letter-spacing: -0.8px;
	line-height: 1.15;
	margin: 0 0 24px;
}

.single-thumb {
	border-radius: var(--radius);
	margin-bottom: 28px;
}

.entry-content {
	font-size: 17px;
	line-height: 1.8;
}

.entry-content > * {
	max-width: var(--text-width);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: var(--font-serif);
	letter-spacing: -0.2px;
	line-height: 1.3;
	margin-top: 31px;
}

.entry-content img {
	border-radius: 8px;
}

.entry-content blockquote {
	margin: 32px 0;
	padding: 4px 0 4px 24px;
	border-left: 4px solid var(--color-accent);
	font-family: var(--font-serif);
	font-size: 20px;
	color: var(--color-text-soft);
}

.entry-content pre {
	background: var(--color-surface);
	border-radius: 8px;
	padding: 16px;
	overflow-x: auto;
	font-size: 15px;
}

.entry-content .alignwide {
	max-width: var(--content-width);
	margin-inline: auto;
}

.entry-footer {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	font-size: 15px;
}

.entry-footer .label {
	color: var(--color-text-soft);
}

.entry-footer a {
	text-decoration: none;
}

/* ------------------------------------------------------------------ */
/* Post navigation                                                     */
/* ------------------------------------------------------------------ */

.post-navigation {
	max-width: var(--text-width);
	margin: 48px auto;
	display: flex;
	justify-content: space-between;
	gap: var(--gap);
}

.post-navigation a {
	text-decoration: none;
	font-weight: 500;
	max-width: 46%;
}

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

.pagination {
	margin: 8px 0 56px;
	text-align: center;
}

.pagination .nav-links {
	display: inline-flex;
	gap: 6px;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	color: var(--color-text);
	text-decoration: none;
	font-weight: 500;
}

.pagination .page-numbers.current {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-inverse);
}

.widget-area {
	max-width: var(--text-width);
	margin: 48px auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: var(--gap);
}

.widget {
	background: var(--color-surface);
	border-radius: var(--radius);
	padding: 20px;
}

.widget-title {
	font-family: var(--font-serif);
	font-size: 18px;
	margin: 0 0 12px;
}

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

.widget li {
	padding: 6px 0;
	border-bottom: 1px solid var(--color-border);
}

.widget li:last-child {
	border-bottom: 0;
}

.widget a {
	text-decoration: none;
}

.comments-area {
	max-width: var(--text-width);
	margin: 48px auto;
}

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

.comment-list .children {
	list-style: none;
	padding-left: 24px;
}

.comment-body {
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border);
}

.comment-meta {
	font-size: 14px;
	color: var(--color-text-soft);
}

.comment-form label {
	display: block;
	font-weight: 600;
	margin: 12px 0 4px;
}

.comment-form input[type='text'],
.comment-form input[type='email'],
.comment-form input[type='url'],
.comment-form textarea,
.search-field {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	font: inherit;
	background: var(--color-bg);
}

.comment-form input:focus,
.comment-form textarea:focus,
.search-field:focus {
	outline: none;
	border-color: var(--color-focus);
	box-shadow: 0 0 0 3px rgba(47, 111, 214, 0.15);
}

.button,
.search-submit,
.comment-form .submit {
	display: inline-block;
	padding: 10px 20px;
	background: var(--color-accent);
	color: var(--color-inverse);
	border: 0;
	border-radius: 8px;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
}

.button:hover,
.search-submit:hover,
.comment-form .submit:hover {
	background: var(--color-accent-hover);
	color: var(--color-inverse);
}

.search-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin: 24px auto;
}

.search-form .search-field {
	flex: 1;
}

.error-404 {
	max-width: var(--text-width);
	margin-inline: auto;
	padding: 40px 0 80px;
	text-align: center;
}

.error-actions {
	margin-top: 24px;
}


/* =========================================================
 FOOTER
========================================================= */

.assetalk-footer {
    width: 100%;
    margin: 0;
    background: #050505;
    color: #ffffff;
}

.assetalk-footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;

    gap: 50px;

    padding: 70px 40px;
}

.assetalk-footer-brand {
    max-width: 330px;
}

.assetalk-footer-logo {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    width: fit-content;
}
.assetalk-footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 90px;
}

.assetalk-footer-description {
    margin:0px 0 0;

    max-width: 320px;

    color: #a9a9a9;

    font-size: 14px;
    line-height: 1.7;
}

.assetalk-footer-column {
    min-width: 0;
}

.assetalk-footer-column h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.assetalk-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.assetalk-footer-column li {
    margin: 0 0 13px;
}

.assetalk-footer-column li:last-child {
    margin-bottom: 0;
}
.assetalk-footer-column a {
    color: #a9a9a9;

    text-decoration: none;

    font-size: 14px;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}
.assetalk-footer-column a:hover {
    color: #ffffff;
}

.assetalk-footer-newsletter p {
    margin: 0 0 20px;

    color: #a9a9a9;

    font-size: 14px;
    line-height: 1.6;
}

.assetalk-footer-subscribe {
    display: flex;

    width: 100%;
}

.assetalk-footer-subscribe input {
    min-width: 0;
    flex: 1;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #333333;
    border-right: none;
    border-radius: 5px 0 0 5px;
    background: #ffffff;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}


.assetalk-footer-subscribe input::placeholder {
    color: #777777;
}


.assetalk-footer-subscribe input:focus {
    border-color: #555555;
}


.assetalk-footer-subscribe button {
    height: 46px;

    padding: 0 18px;

    border: none;

    border-radius: 0 5px 5px 0;

    background: var(--color-amber);
    color: #050505;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    white-space: nowrap;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.assetalk-footer-subscribe button:hover {
    opacity: 0.85;
}

.assetalk-footer-bottom {
    width: 100%;

    border-top: 1px solid #222222;
}


.assetalk-footer-bottom-inner {
    width: 100%;
    max-width: 1400px;
    min-height: 70px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.assetalk-footer-copy {
    color: #777777;

    font-size: 13px;
}

.assetalk-footer-legal {
    display: flex;

    align-items: center;

    gap: 25px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.assetalk-footer-legal li {
    list-style: none;
    margin: 0;
    padding: 0;
}


.assetalk-footer-legal a {
    color: #777777;

    text-decoration: none;

    font-size: 13px;

    transition: color 0.2s ease;
}


.assetalk-footer-legal a:hover {
    color: #ffffff;
}
@media (max-width: 1000px) {

    .assetalk-footer-container {
        grid-template-columns: 1fr 1fr 1fr;

        gap: 45px 30px;

        padding: 60px 30px;
    }


    .assetalk-footer-brand {
        grid-column: 1 / -1;

        max-width: 100%;
    }


    .assetalk-footer-newsletter {
        grid-column: 1 / -1;
    }

}
@media (max-width: 600px) {

    .assetalk-footer {
        margin: 0;
    }


    .assetalk-footer-container {

        /*
         * Two columns for footer menus
         */
        grid-template-columns: 1fr 1fr;

        min-height: auto;

        padding: 50px 20px;

        gap: 35px 25px;
    }

    .assetalk-footer-brand {

        grid-column: 1 / -1;

        max-width: 100%;

        min-height: auto;
    }
    .assetalk-footer-logo img {

        max-width: 170px;
        max-height: 80px;
    }
    .assetalk-footer-description {

        max-width: 330px;

        margin-top: 15px;

    }
    .assetalk-footer-column {

        min-height: auto;
    }
    .assetalk-footer-column h3 {

        margin-bottom: 18px;

        font-size: 15px;
    }

    .assetalk-footer-column li {

        margin-bottom: 11px;

    }


    .assetalk-footer-column a {

        font-size: 13px;

    }

    .assetalk-footer-newsletter {

        grid-column: 1 / -1;

        width: 100%;

    }


    .assetalk-footer-newsletter p {

        max-width: 400px;

    }


    .assetalk-footer-subscribe {

        width: 100%;

    }


    .assetalk-footer-subscribe input,
    .assetalk-footer-subscribe button {

        height: 50px;

    }


    /* -----------------------------------------
       FOOTER BOTTOM
    ----------------------------------------- */

    .assetalk-footer-bottom-inner {

        min-height: auto;

        padding: 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;

    }


    .assetalk-footer-legal {

        flex-wrap: wrap;

        gap: 12px 20px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .assetalk-footer-container {

        grid-template-columns: 1fr 1fr;

        padding: 45px 16px;

        gap: 30px 15px;

    }

    .assetalk-footer-logo img {

        max-width: 150px;
        max-height: 70px;
    }

    .assetalk-footer-bottom-inner {

        padding: 18px 16px;
    }

    .assetalk-footer-copy {
        font-size: 12px;
    }
    .assetalk-footer-legal {
        gap: 10px 16px;

    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;

    }

}

/* =====================================================
   HOME banner
===================================================== */

.assetalk-home {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
}

.assetalk-top-grid {
    display: grid !important;
    grid-template-columns:
        minmax(0, 2fr)
        minmax(0, 1fr);
    gap: 25px;
    width: 100%;
}
.assetalk-card-large {
    min-height: 580px;
}

.assetalk-right-grid {
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-rows:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 25px;
    min-width: 0;
    min-height: 580px;
}

.assetalk-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 275px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #222;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
}

.assetalk-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.assetalk-bottom-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

    margin-top: 25px;
}

.assetalk-bottom-grid .assetalk-card {
    min-height: 280px;
}

.assetalk-card-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.assetalk-card-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding: 25px;

    box-sizing: border-box;
}

.assetalk-category {
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 12px;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 2px;
}


.category-pink {
    background: #ffad20;
}
.category-orange {
    background: #ffad20;
}
.category-green {
    background: #ffad20;
}
.category-purple {
    background: #ffad20;
}

.assetalk-card-title {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.assetalk-card-large .assetalk-card-title {
    font-size: 28px;
}

.assetalk-card-title a {
    color: #ffffff !important;

    text-decoration: none !important;
}

.assetalk-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.assetalk-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


.assetalk-no-posts {
    padding: 80px 20px;

    text-align: center;
}

@media (max-width: 900px) {

    .assetalk-home {
        padding: 20px;
    }

    .assetalk-top-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .assetalk-card-large {
        min-height: 500px;
    }

    .assetalk-right-grid {
        min-height: 500px;
    }

    .assetalk-bottom-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 600px) {

    .assetalk-home {
        padding: 15px;
    }

    .assetalk-top-grid {
        display: block !important;
    }

    .assetalk-card-large {
        min-height: 400px;
        margin-bottom: 20px;
    }

    .assetalk-right-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
        gap: 20px;
    }

    .assetalk-right-grid .assetalk-card {
        min-height: 300px;
    }

    .assetalk-bottom-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 20px;
    }

    .assetalk-bottom-grid .assetalk-card {
        min-height: 300px;
    }

    .assetalk-card-content {
        padding: 20px;
    }

    .assetalk-card-title,
    .assetalk-card-large .assetalk-card-title {
        font-size: 20px;
    }

}

/* =====================================================
  LATEST ARTICLES
===================================================== */

.assetalk-latest {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px 60px;
    box-sizing: border-box;
}

.assetalk-latest-header {
    margin-bottom: 25px;
}

.assetalk-latest-header h2 {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #171717;
}

.assetalk-latest-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.assetalk-latest-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns:
        calc((100% - 60px) / 4);
    gap: 20px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 0 10px;
    box-sizing: border-box;
}

.assetalk-latest-slider::-webkit-scrollbar {
    display: none;
}

.assetalk-latest-card {
    min-width: 0;
    background: #ffffff;
}

.assetalk-latest-image {
    display: block;
    width: 100%;
    height: 235px;
    overflow: hidden;
    border-radius: 5px;
    background: #eeeeee;
    text-decoration: none;
}

.assetalk-latest-thumbnail {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assetalk-latest-image:hover
.assetalk-latest-thumbnail {
    transform: scale(1.04);
}

.assetalk-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
    color: #777777;
    font-size: 14px;
}

.assetalk-latest-content {
    padding-top: 22px;
}

.assetalk-latest-category {
    display: block;
    margin-bottom: 9px;
    color: #304bdc !important;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none !important;
}

.assetalk-latest-category:hover {
    text-decoration: underline !important;
}

.assetalk-latest-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.assetalk-latest-title a {
    color: #171717 !important;
    text-decoration: none !important;
}
.assetalk-latest-title a:hover {
    text-decoration: underline !important;
}

.assetalk-latest-date {
    margin-top: 8px;
    color: #555555;
    font-size: 16px;
    line-height: 1.4;
}

.assetalk-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000000;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.assetalk-slider-prev {
    left: -42px;
}
.assetalk-slider-next {
    right: -42px;
}
.assetalk-slider-arrow:hover {
    opacity: 0.6;
}

@media (max-width: 1100px) {
    .assetalk-latest {
        padding-left: 40px;

        padding-right: 40px;
    }
    .assetalk-latest-slider {
        grid-auto-columns:
            calc((100% - 40px) / 3);
    }
    .assetalk-slider-prev {
        left: -35px;
    }
    .assetalk-slider-next {
        right: -35px;
    }
}

@media (max-width: 750px) {

    .assetalk-latest {
        padding: 30px 20px 50px;
    }
    .assetalk-latest-header h2 {
        font-size: 28px;
    }
    .assetalk-latest-slider {
        grid-auto-columns:
            calc((100% - 20px) / 2);
    }
    .assetalk-latest-image {
        height: 190px;
    }
    .assetalk-latest-title {
        font-size: 21px;
    }
    .assetalk-latest-category {
        font-size: 13px;
    }
    .assetalk-latest-date {
        font-size: 14px;
    }
}

@media (max-width: 500px) {

    .assetalk-latest {
        padding-left: 15px;

        padding-right: 15px;
    }

    .assetalk-latest-slider {
        grid-auto-columns: 100%;

        gap: 15px;
    }

    .assetalk-latest-image {
        height: 230px;
    }

    .assetalk-slider-arrow {
        width: 35px;

        height: 35px;

        font-size: 30px;
    }

    .assetalk-slider-prev {
        left: -15px;
    }

    .assetalk-slider-next {
        right: -15px;
    }

}

/* =====================================================
INVESTOPEDIA FOR ADVISORS SECTION
===================================================== */

.assetalk-advisors {
    position: relative;
    width: 100%;
    padding: 70px 30px 75px;
    box-sizing: border-box;
    background-color: #fff7eb;
}

.assetalk-advisors-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.assetalk-advisors-header {
    text-align: center;
    margin-bottom: 38px;
}
.assetalk-advisors-header h2 {
    margin: 0 0 18px;
    padding: 0;
    color: #000000;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.assetalk-advisors-header p {
    margin: 0;
    color: #000000;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
}

.assetalk-advisors-header a {
    color: #000000;
    text-decoration: underline;
}

.assetalk-advisors-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.assetalk-advisor-card {
    display: flex;
    flex-direction: column;
    min-height: 228px;
    padding: 25px;
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 10px;
    color: #111111;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.assetalk-advisor-card:hover {
    transform: translateY(-4px)
    box-shadow 0PX 12px 30px rgba(0, 0, 0, 0.12);
}

.assetalk-advisor-card h3 {
    margin: 0;
    padding: 0;
    color: #111111;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.assetalk-advisor-line {
    display: block;
    width: 40px;
    height: 7px;
    margin-top: 18px;
    margin-bottom: 18px;
    background: #000000;
}

.assetalk-advisor-card p {
    margin: 0;
    max-width: 330px;
    color: #111111;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
}

.assetalk-advisor-arrow {
    display: block;
    margin-top: auto;
    padding-top: 12px;
    color: #3548a8;
    font-size: 27px;
    line-height: 1;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .assetalk-advisors {
        padding: 55px 25px 60px;
    }
    .assetalk-advisors-header h2 {
        font-size: 40px;
    }
    .assetalk-advisors-header p {
        font-size: 20px;
    }
    .assetalk-advisors-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 650px) {

    .assetalk-advisors {
        padding: 45px 18px 50px;
    }
    .assetalk-advisors-header {
        margin-bottom: 28px;
    }
    .assetalk-advisors-header h2 {
        font-size: 32px;

        letter-spacing: -0.5px;
    }
    .assetalk-advisors-header p {
        font-size: 18px;

        line-height: 1.45;
    }
    .assetalk-advisors-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }
    .assetalk-advisor-card {
        min-height: 220px;

        padding: 22px;
    }
    .assetalk-advisor-card h3 {
        font-size: 26px;
    }
    .assetalk-advisor-card p {
        font-size: 18px;
    }

}

@media (max-width: 400px) {

    .assetalk-advisors-header h2 {
        font-size: 28px;
    }

    .assetalk-advisors-header p {
        font-size: 16px;
    }

}

/* =====================================================
  RECENTLY PUBLISHED
===================================================== */

.assetalk-recent {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 20px 70px;
    box-sizing: border-box;
}

.assetalk-recent-header {
    position: relative;
    margin-bottom: 60px;
}


.assetalk-recent-header h2 {
    margin: 0;
    color: #172238;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.assetalk-recent-line {
    width: 100%;
    height: 1px;
    margin-top: 14px;
    background: #aeb6c5;
    position: relative;
}


.assetalk-recent-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 308px;
    height: 4px;
    background: #315bea;
    border-radius: 2px;
}

.assetalk-recent-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr)
        minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.assetalk-recent-left,
.assetalk-recent-right {
    min-width: 0;
}

.assetalk-recent-main-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid #e1e5eb;
    border-radius: 7px;
    background: #ffffff;
}

.assetalk-recent-main-image {
    display: block;
    width: 100%;
    height: 395px;
    overflow: hidden;
    background: #eeeeee;
}

.assetalk-recent-main-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assetalk-recent-main-image:hover img {
    transform: scale(1.04);
}

.assetalk-recent-main-content {
    padding: 18px 20px 22px;
}

.assetalk-recent-main-content h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

.assetalk-recent-main-content h3 a {
    color: #111111 !important;
    text-decoration: none !important;
}

.assetalk-recent-main-content h3 a:hover {
    text-decoration: underline !important;
}

.assetalk-recent-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #9aa4b4;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.assetalk-recent-small-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.assetalk-recent-small-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.assetalk-recent-small-image {
    display: block;
    width: 92px;
    height: 92px;
    overflow: hidden;
    border-radius: 4px;
    background: #eeeeee;
}

.assetalk-recent-small-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assetalk-recent-small-image:hover img {
    transform: scale(1.05);
}

.assetalk-recent-small-content {
    min-width: 0;
}

.assetalk-recent-small-content h4 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.assetalk-recent-small-content h4 a {
    color: #111111 !important;
    text-decoration: none !important;
}

.assetalk-recent-small-content h4 a:hover {
    text-decoration: underline !important;
}

.assetalk-recent-small-date {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    color: #9aa4b4;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.assetalk-recent-featured {
    position: relative;
    width: 100%;
    min-height: 745px;
    overflow: hidden;
    border-radius: 7px;
    background-color: #101923;
    display: flex;
    align-items: flex-end;
}

.assetalk-recent-featured-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.assetalk-featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.10) 100%
        );
}
.assetalk-featured-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 38px;
    box-sizing: border-box;
}

.assetalk-featured-category {
    display: inline-block;
    padding: 8px 12px;
    margin-bottom: 16px;
    background: var(--color-amber);
    color: #ffffff !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 2px;
}

.assetalk-featured-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.assetalk-featured-content h3 {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}
.assetalk-featured-content h3 a {
    color: #ffffff !important;
    text-decoration: none !important;
}

.assetalk-featured-content p {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.85;
}

.assetalk-featured-button {
    display: inline-block;
    min-width: 150px;
    padding: 12px 25px;
    box-sizing: border-box;
    background: #ffffff;
    color: #315bea !important;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 4px;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.assetalk-featured-button:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

@media (max-width: 1000px) {
    .assetalk-recent {
        padding-left: 20px;
        padding-right: 20px;
    }
    .assetalk-recent-grid {
        grid-template-columns:
            1fr 1fr;
        gap: 25px;
    }
    .assetalk-recent-featured {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 600px;
    }
    .assetalk-recent-left {
        grid-column: 1;
        grid-row: 2;
    }
    .assetalk-recent-right {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 650px) {
    .assetalk-recent {
        padding: 40px 15px 50px;
    }
    .assetalk-recent-header {
        margin-bottom: 35px;
    }
    .assetalk-recent-header h2 {
        font-size: 28px;
    }
    .assetalk-recent-line::before {
        width: 180px;
    }
    .assetalk-recent-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .assetalk-recent-featured {
        order: 1;
        min-height: 550px;
    }
    .assetalk-recent-left {
        order: 2;
    }
    .assetalk-recent-right {
        order: 3;
    }
    .assetalk-recent-main-image {
        height: 300px;
    }
    .assetalk-featured-content {
        padding: 25px;
    }
}

@media (max-width: 450px) {
    .assetalk-recent-main-image {
        height: 250px;
    }
    .assetalk-recent-small-card {
        grid-template-columns: 80px minmax(0, 1fr);
    }
    .assetalk-recent-small-image {
        width: 80px;
        height: 80px;
    }
    .assetalk-recent-small-content h4 {
        font-size: 14px;
    }
}
/* =========================================================
  SINGLE PAGE HERO
========================================================= */

.assetalk-page-banner {
    width: 100%;
    height: 400px;

    background: #000;

    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}

.assetalk-page-banner-content {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    padding: 0 60px;

    box-sizing: border-box;
}

.assetalk-page-banner-title {
    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 60px);

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.single-article {
    width: 100%;
    margin: 0;
}

.single-article .entry-content {
    width: 100%;

    margin: 0 auto;

    padding: 60px;

    box-sizing: border-box;
}


@media (max-width: 900px) {

    .assetalk-page-banner {
        height: 350px;
    }

    .assetalk-page-banner-content {
        padding: 0 40px;
    }

    .assetalk-page-banner-title {
        font-size: 52px;
    }

    .single-article .entry-content {
        padding: 45px 40px;
    }

}

@media (max-width: 600px) {

    .assetalk-page-banner {
        height: 280px;
    }

    .assetalk-page-banner-content {
        padding: 0 25px;
    }

    .assetalk-page-banner-title {
        font-size: 38px;
        line-height: 1.08;
    }

    .single-article .entry-content {
        padding: 35px 25px;
    }

}

@media (max-width: 400px) {

    .assetalk-page-banner {
        height: 240px;
    }

    .assetalk-page-banner-content {
        padding: 0 20px;
    }

    .assetalk-page-banner-title {
        font-size: 32px;
    }

    .single-article .entry-content {
        padding: 30px 20px;
    }

}
/* =========================================================
   SEARCH PAGE
========================================================= */

.assetalk-search-page {
    width: 100%;
    min-height: 100vh;

    background: #ffffff;

    box-sizing: border-box;
}

/* =========================================================
   SEARCH HEADER
========================================================= */

.assetalk-search-header {
    width: 100%;

    background: #ffffff;

    /* Removed bottom border */
    border-bottom: none;
}

.assetalk-search-header-inner {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    /* Reduced top/bottom spacing */
    padding: 20px 30px;

    box-sizing: border-box;
}

.assetalk-search-header h1 {
    margin: 0;

    color: #111827;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 34px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -0.8px;
}

.assetalk-search-header h1 span {
    color: #ffad20;
}

.assetalk-search-container {
    width: 100%;
    max-width: 1400px;

    margin: 0 auto;

    /* Reduced large space */
    padding: 20px 30px 35px;

    display: grid;

    grid-template-columns: minmax(0, 1fr) 300px;

    gap: 30px;

    box-sizing: border-box;
}

.assetalk-search-results {
    min-width: 0;
}

.assetalk-search-card {
    display: grid;

    grid-template-columns: 250px minmax(0, 1fr);

    width: 100%;

    min-height: 220px;

    margin: 0 0 18px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8ebf2;

    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);

    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.assetalk-search-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.assetalk-search-thumbnail {
    width: 250px;
    height: 220px;

    overflow: hidden;

    background: #eef1f5;
}

.assetalk-search-thumbnail a {
    display: block;

    width: 100%;
    height: 100%;
}

.assetalk-search-thumbnail img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 0.35s ease;
}

.assetalk-search-card:hover
.assetalk-search-thumbnail img {
    transform: scale(1.04);
}

.assetalk-search-placeholder {
    width: 100%;
    height: 100%;

    background: linear-gradient(
        135deg,
        #e5e7eb,
        #f3f4f6
    );
}

.assetalk-search-card-content {
    min-width: 0;

    padding: 25px 30px;

    background: #ffffff;

    box-sizing: border-box;
}

.assetalk-search-title {
    margin: 0 0 12px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 22px;

    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.4px;
}

.assetalk-search-title a {
    color: #111827;

    text-decoration: none;

    transition: color 0.2s ease;
}

.assetalk-search-title a:hover {
    color: #ffad20;
}

.assetalk-search-meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    padding-bottom: 13px;

    margin-bottom: 14px;

    border-bottom: 1px solid #e5e7eb;

    color: #8b95a7;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.2px;

    text-transform: uppercase;
}

.assetalk-meta-separator {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ffad20;

    border: 0;
}

.assetalk-search-excerpt {
    color: #667085;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.65;
}

.assetalk-search-sidebar {
    width: 100%;
}

.assetalk-sidebar-widget {
    margin-bottom: 18px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e8ebf2;

    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.035);

    box-sizing: border-box;
}

.assetalk-sidebar-widget h3 {
    position: relative;

    margin: 0 0 16px;

    padding-bottom: 10px;

    color: #111827;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;

    font-weight: 750;

    line-height: 1.2;
}

.assetalk-sidebar-widget h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 3px;

    border-radius: 10px;

    background: #ffad20;
}

.assetalk-sidebar-search-form {
    display: flex;

    align-items: center;

    gap: 8px;
}

.assetalk-sidebar-search-form input {
    flex: 1;

    width: 100%;
    min-width: 0;

    height: 42px;

    padding: 0 12px;

    border: 1px solid #dfe3ea;

    border-radius: 6px;

    background: #ffffff;

    color: #1f2937;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.assetalk-sidebar-search-form input:focus {
    border-color: #ffad20;

    box-shadow: 0 0 0 3px rgba(255, 173, 32, 0.15);
}

.assetalk-sidebar-search-form button {
    flex-shrink: 0;

    height: 42px;

    padding: 0 15px;

    border: 0;

    border-radius: 6px;

    background: #ffad20;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.assetalk-sidebar-search-form button:hover {
    background: #e99a0d;

    transform: translateY(-1px);
}
.assetalk-sidebar-list {
    list-style: none;

    margin: 0;
    padding: 0;
}

.assetalk-sidebar-list li {
    position: relative;

    margin: 0 0 11px;

    padding-left: 14px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 1.5;
}

.assetalk-sidebar-list li:last-child {
    margin-bottom: 0;
}

.assetalk-sidebar-list li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 8px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ffad20;
}

.assetalk-sidebar-list a {
    color: #344054;

    text-decoration: none;

    transition: color 0.2s ease;
}

.assetalk-sidebar-list a:hover {
    color: #ffad20;
}

.assetalk-search-pagination {
    margin-top: 20px;

    padding-top: 0;

    /* Prevent theme red color */
    color: #1f2937 !important;
}

.assetalk-search-pagination .nav-links {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}

.assetalk-search-pagination a,
.assetalk-search-pagination span,
.assetalk-search-pagination .page-numbers {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 44px;
    height: 44px;

    padding: 0 13px;

    border: 1px solid #dfe3ea;

    border-radius: 9px;

    background: #ffffff;

    color: #1f2937 !important;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none !important;

    box-sizing: border-box;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.assetalk-search-pagination a:hover,
.assetalk-search-pagination .page-numbers:hover {
    border-color: #ffad20 !important;

    background: #fff8e8 !important;

    color: #ffad20 !important;
}

.assetalk-search-pagination .current,
.assetalk-search-pagination span.current {
    border-color: #ffad20 !important;

    background: #ffad20 !important;

    color: #ffffff !important;
}

.assetalk-no-results {
    padding: 35px;

    background: #ffffff;

    border: 1px solid #e8ebf2;

    border-radius: 10px;

    text-align: center;
}

.assetalk-no-results h2 {
    margin: 0 0 10px;

    color: #111827;

    font-size: 26px;
}

.assetalk-no-results p {
    margin: 0;

    color: #667085;

    font-size: 14px;
}

/* If your theme adds margin above the footer */
body.search .assetalk-footer {
    margin-top: 0 !important;
}

/* Remove extra bottom spacing from search main */
body.search .site-main {
    margin-bottom: 0 !important;
}

/* Remove extra padding after search content */
body.search .assetalk-search-page {
    padding-bottom: 0 !important;
}

/* Archive pages share the search layout — keep the same spacing. */
body.archive .assetalk-footer {
    margin-top: 0 !important;
}

body.archive .site-main {
    margin-bottom: 0 !important;
}

body.archive .assetalk-search-page {
    padding-bottom: 0 !important;
}

.assetalk-archive-description {
    margin: 8px 0 0;

    color: #667085;

    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 1401px) {

    .assetalk-search-header-inner,
    .assetalk-search-container {
        max-width: 1400px;
    }

}

@media (max-width: 1000px) {

    .assetalk-search-container {
        grid-template-columns: minmax(0, 1fr) 270px;

        gap: 22px;

        padding: 20px 25px 30px;
    }

    .assetalk-search-header-inner {
        padding: 20px 25px;
    }

    .assetalk-search-card {
        grid-template-columns: 200px minmax(0, 1fr);

        min-height: 200px;
    }

    .assetalk-search-thumbnail {
        width: 200px;
        height: 200px;
    }

    .assetalk-search-card-content {
        padding: 23px;
    }

    .assetalk-search-title {
        font-size: 19px;
    }

}

@media (max-width: 750px) {

    .assetalk-search-header-inner {
        padding: 20px;
    }

    .assetalk-search-header h1 {
        font-size: 27px;
    }

    .assetalk-search-container {
        display: block;

        padding: 20px 15px 30px;
    }

    .assetalk-search-card {
        grid-template-columns: 150px minmax(0, 1fr);

        min-height: 180px;

        margin-bottom: 18px;
    }

    .assetalk-search-thumbnail {
        width: 150px;
        height: 180px;
    }

    .assetalk-search-card-content {
        padding: 20px;
    }

    .assetalk-search-title {
        font-size: 17px;
    }

    .assetalk-search-excerpt {
        font-size: 12px;
    }

    .assetalk-search-sidebar {
        margin-top: 25px;
    }

}

@media (max-width: 500px) {

    .assetalk-search-header-inner {
        padding: 18px 16px;
    }

    .assetalk-search-header h1 {
        font-size: 23px;
    }

    .assetalk-search-container {
        padding: 18px 12px 25px;
    }

    .assetalk-search-card {
        grid-template-columns: 105px minmax(0, 1fr);

        min-height: 145px;

        border-radius: 8px;
    }

    .assetalk-search-thumbnail {
        width: 105px;
        height: 145px;
    }

    .assetalk-search-card-content {
        padding: 13px;
    }

    .assetalk-search-title {
        font-size: 14px;

        line-height: 1.3;
    }

    .assetalk-search-meta {
        gap: 6px;

        padding-bottom: 8px;
        margin-bottom: 8px;

        font-size: 8px;
    }

    .assetalk-search-excerpt {
        font-size: 10px;

        line-height: 1.45;
    }

    .assetalk-sidebar-widget {
        padding: 18px;
    }

}

@media (max-width: 360px) {

    .assetalk-search-card {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .assetalk-search-thumbnail {
        width: 90px;
        height: 140px;
    }

    .assetalk-search-card-content {
        padding: 11px;
    }

    .assetalk-search-title {
        font-size: 13px;
    }

    .assetalk-search-excerpt {
        font-size: 9px;
    }
}
/* =========================================================
   SINGLE POST PAGE
========================================================= */

.assetalk-single-page {
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

.assetalk-single-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 35px 30px 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 347px;
    gap: 28px;

    box-sizing: border-box;
}


/* =========================================================
   MAIN POST
========================================================= */

.assetalk-single-post {
    min-width: 0;
}

.assetalk-single-category {
    display: inline-block;

    margin-bottom: 16px;
    padding: 6px 11px;

    background: #ffad20;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;

    line-height: 1;
    text-transform: uppercase;

    border-radius: 3px;
}

.assetalk-single-title {
    margin: 0 0 18px;

    color: #111827;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 750;

    line-height: 1.15;
    letter-spacing: -1px;
}

.assetalk-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 32px;

    color: #98a2b3;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
}

.assetalk-single-meta-separator {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ffad20;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.assetalk-single-featured-image {
    width: 100%;

    margin-bottom: 40px;

    overflow: hidden;

    border-radius: 8px;

    background: #eef1f5;
}

.assetalk-single-featured-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 600px;

    object-fit: cover;
}


/* =========================================================
   POST CONTENT
========================================================= */

.assetalk-single-content {
    color: #344054;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 17px;
    line-height: 1.7;
}

.assetalk-single-content p {
    margin: 0 0 22px;
}

.assetalk-single-content h2 {
    margin: 35px 0 15px;

    color: #111827;

    font-size: 27px;
    line-height: 1.3;
}

.assetalk-single-content h3 {
    margin: 30px 0 14px;

    color: #111827;

    font-size: 23px;
}

.assetalk-single-content a {
    color: #ffad20;
}

.assetalk-single-content img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   AUTHOR BOX
========================================================= */

.assetalk-author-box {
    display: flex;

    gap: 22px;

    margin-top: 55px;
    padding: 26px;

    background: #ffffff;

    border: 1px solid #e8ebf2;
    border-radius: 10px;

    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.035);

    box-sizing: border-box;
}

.assetalk-author-avatar {
    flex-shrink: 0;
}

.assetalk-author-avatar img {
    display: block;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    object-fit: cover;
}

.assetalk-author-info {
    min-width: 0;
}

.assetalk-author-label {
    margin: 0 0 4px;

    color: #98a2b3;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.assetalk-author-name {
    margin: 0 0 10px;

    color: #111827;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 750;

    line-height: 1.2;
}

.assetalk-author-name a {
    color: #111827;

    text-decoration: none;

    transition: color 0.2s ease;
}

.assetalk-author-name a:hover {
    color: #ffad20;
}

.assetalk-author-bio {
    margin: 0 0 14px;

    color: #667085;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    line-height: 1.65;
}

.assetalk-author-categories {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;
}

.assetalk-author-categories-label {
    color: #98a2b3;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.assetalk-author-category {
    display: inline-block;

    padding: 5px 11px;

    background: #fff4e0;

    color: #b26a00;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 20px;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.assetalk-author-category:hover {
    background: #ffad20;

    color: #ffffff;
}

@media (max-width: 600px) {

    .assetalk-author-box {
        flex-direction: column;

        gap: 16px;

        padding: 20px;
    }

    .assetalk-author-avatar img {
        width: 64px;
        height: 64px;
    }

}


/* =========================================================
   SIDEBAR
========================================================= */

.assetalk-single-sidebar {
    width: 100%;
}


/* =========================================================
   RELATED POSTS
========================================================= */

.assetalk-related-posts {
    width: 100%;

    margin-top: 65px;

    grid-column: 1 / -1;
}

.assetalk-related-title {
    margin: 0 0 22px;

    color: #111827;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 28px;
    font-weight: 750;

    line-height: 1.2;
}

.assetalk-related-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.assetalk-related-card {
    min-width: 0;
}

.assetalk-related-image {
    width: 100%;
    height: 235px;

    margin-bottom: 8px;

    overflow: hidden;

    border-radius: 12px;

    background: #eef1f5;
}

.assetalk-related-image a {
    display: block;

    width: 100%;
    height: 100%;
}

.assetalk-related-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.assetalk-related-card:hover
.assetalk-related-image img {
    transform: scale(1.04);
}

.assetalk-related-placeholder {
    width: 100%;
    height: 100%;

    background: linear-gradient(
        135deg,
        #e5e7eb,
        #f3f4f6
    );
}

.assetalk-related-author {
    margin-bottom: 5px;

    color: #ffad20;

    font-size: 13px;
    font-weight: 500;
}

.assetalk-related-card-title {
    margin: 0 0 12px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 23px;
    font-weight: 750;

    line-height: 1.15;
}

.assetalk-related-card-title a {
    color: #111827;

    text-decoration: none;

    transition: color 0.2s ease;
}

.assetalk-related-card-title a:hover {
    color: #ffad20;
}

.assetalk-related-excerpt {
    margin-bottom: 10px;

    color: #667085;

    font-size: 14px;

    line-height: 1.45;
}

.assetalk-related-category {
    margin-bottom: 5px;

    color: #ffad20;

    font-size: 14px;
}

.assetalk-related-date,
.assetalk-related-reading {
    color: #344054;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .assetalk-single-container {
        grid-template-columns: minmax(0, 1fr) 280px;

        gap: 22px;

        padding-left: 25px;
        padding-right: 25px;
    }

    .assetalk-single-title {
        font-size: 32px;
    }

    .assetalk-related-grid {
        gap: 20px;
    }

    .assetalk-related-image {
        height: 200px;
    }

    .assetalk-related-card-title {
        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {

    .assetalk-single-container {
        display: block;

        padding: 30px 18px 0;
    }

    .assetalk-single-title {
        font-size: 30px;

        letter-spacing: -0.5px;
    }

    .assetalk-single-featured-image {
        margin-bottom: 30px;
    }

    .assetalk-single-content {
        font-size: 16px;
    }

    .assetalk-single-sidebar {
        margin-top: 45px;
    }

    .assetalk-related-posts {
        margin-top: 50px;
    }

    .assetalk-related-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .assetalk-related-image {
        height: 250px;
    }

    .assetalk-related-card-title {
        font-size: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .assetalk-single-container {
        padding: 25px 14px 0;
    }

    .assetalk-single-category {
        font-size: 9px;
    }

    .assetalk-single-title {
        font-size: 26px;

        line-height: 1.2;
    }

    .assetalk-single-meta {
        font-size: 9px;

        margin-bottom: 25px;
    }

    .assetalk-single-featured-image {
        border-radius: 6px;
    }

    .assetalk-single-content {
        font-size: 15px;

        line-height: 1.65;
    }

    .assetalk-related-title {
        font-size: 25px;
    }

    .assetalk-related-image {
        height: 220px;
    }

}

/* =========================================================
   SINGLE PAGE — EDITORIAL DESIGN
========================================================= */

.assetalk-editorial-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 520px;
    box-sizing: border-box;
    background-color: #111827;
}

.assetalk-editorial-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.assetalk-editorial-hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(17, 24, 39, 0.2) 0%,
        rgba(17, 24, 39, 0.82) 100%
    );
}

.assetalk-editorial-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 30px 45px;
    box-sizing: border-box;
}

.assetalk-editorial-category {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 11px;
    background: #ffad20;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
}

.assetalk-editorial-category:hover {
    background: #e99a0d;
    color: #ffffff;
}

.assetalk-editorial-title {
    max-width: 900px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 46px;
}

.assetalk-editorial-meta {
    margin-bottom: 0;
    color: #d1d5db;
}

.assetalk-single-editorial .assetalk-single-container {
    padding-top: 45px;
}

.assetalk-single-editorial .assetalk-single-content {
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 1000px) {
    .assetalk-editorial-hero {
        min-height: 460px;
    }
    .assetalk-editorial-hero-content {
        padding: 60px 25px 40px;
    }
    .assetalk-editorial-title {
        font-size: 38px;
    }
}

@media (max-width: 750px) {
    .assetalk-editorial-hero {
        min-height: 420px;
    }
    .assetalk-editorial-hero-content {
        padding: 50px 18px 35px;
    }
    .assetalk-editorial-title {
        font-size: 32px;
    }
    .assetalk-single-editorial .assetalk-single-container {
        padding-top: 35px;
    }
}

@media (max-width: 500px) {
    .assetalk-editorial-hero {
        min-height: 360px;
    }
    .assetalk-editorial-title {
        font-size: 28px;
    }
    .assetalk-editorial-category {
        font-size: 9px;
    }
    .assetalk-single-editorial .assetalk-single-content {
        font-size: 16px;
    }
}

/* =========================================================
   SINGLE PAGE — MODERN DESIGN
========================================================= */

.assetalk-modern-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #111827;
    background-image:
        radial-gradient(620px 320px at 85% -40px, rgba(255, 173, 32, 0.28), rgba(17, 24, 39, 0)),
        radial-gradient(520px 280px at -10% 120%, rgba(48, 75, 220, 0.18), rgba(17, 24, 39, 0));
}

.assetalk-modern-hero-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 85px 30px 60px;
    box-sizing: border-box;
}

.assetalk-modern-category {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 11px;
    background: #ffad20;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
}

.assetalk-modern-title {
    max-width: 900px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 48px;
}

.assetalk-modern-meta {
    margin-bottom: 22px;
    color: #d1d5db;
}

.assetalk-modern-accent {
    display: block;
    width: 52px;
    height: 4px;
    background: #ffad20;
    border-radius: 5px;
}

.assetalk-single-modern .assetalk-single-container {
    padding-top: 45px;
}

.assetalk-single-modern .assetalk-single-content {
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 1000px) {
    .assetalk-modern-hero-inner {
        padding: 70px 25px 50px;
    }
    .assetalk-modern-title {
        font-size: 40px;
    }
}

@media (max-width: 750px) {
    .assetalk-modern-hero-inner {
        padding: 60px 18px 45px;
    }
    .assetalk-modern-title {
        font-size: 34px;
    }
    .assetalk-single-modern .assetalk-single-container {
        padding-top: 35px;
    }
}

@media (max-width: 500px) {
    .assetalk-modern-title {
        font-size: 28px;
    }
    .assetalk-modern-category {
        font-size: 9px;
    }
    .assetalk-single-modern .assetalk-single-content {
        font-size: 16px;
    }
}

/* =========================================================
   HEADER INTERACTIONS (sticky, mobile menu, layout classes)
========================================================= */

.assetalk-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.assetalk-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.assetalk-header.is-scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.assetalk-header.is-compact {
    height: 64px;
}

.assetalk-header.is-compact .assetalk-brand {
    height: 100%;
}

/* Hamburger — hidden on desktop, shown on small screens. */
.assetalk-menu-toggle {
    display: none;
}

/* Mobile submenu carets — desktop uses hover, so hide them. */
.assetalk-menu .submenu-toggle {
    display: none;
}

/* Layout override classes from the per-page meta box / Customizer. */
body.assetalk-hide-header .assetalk-header,
body.assetalk-hide-header .assetalk-search-overlay {
    display: none;
}

body.assetalk-hide-footer .assetalk-footer {
    display: none;
}

body.assetalk-hide-title .assetalk-single-title,
body.assetalk-hide-title .assetalk-page-banner {
    display: none;
}

body.assetalk-layout-full .assetalk-single-container,
body.assetalk-layout-full .site-main {
    max-width: none;
}

body.assetalk-hide-sidebar .assetalk-single-container {
    grid-template-columns: minmax(0, 1fr);
}

body.assetalk-menu-open {
    overflow: hidden;
}

.assetalk-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: var(--color-amber);
    color: #111111;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease,
        background 0.2s ease;
}

.assetalk-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.assetalk-back-to-top:hover {
    background: #ffdd33;
}

.assetalk-back-to-top:focus-visible {
    outline: 2px solid var(--color-amber);
    outline-offset: 2px;
}

@media (max-width: 400px) {
    .assetalk-back-to-top {
        right: 16px;
        bottom: 16px;

        width: 40px;
        height: 40px;

        font-size: 18px;
    }
}

/* Footer social icons (Customizer-driven). */
.footer-social {
    margin-top: 18px;
}

.footer-social-title {
    margin: 0 0 8px;
    color: #a9a9a9;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.social-nav-list {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    text-decoration: none;
    transition: background .2s ease;
}

.social-nav-item a:hover {
    background: rgba(255, 255, 255, .2);
}

.assetalk-footer-site-name {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 900px) {

    .assetalk-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 8px;
        margin-right: 10px;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .assetalk-menu-toggle-bar {
        display: block;
        width: 100%;
        height: 2px;
        background: #111111;
        border-radius: 2px;
        transition: transform .2s ease, opacity .2s ease;
    }

    .assetalk-menu-toggle[aria-expanded="true"] .assetalk-menu-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .assetalk-menu-toggle[aria-expanded="true"] .assetalk-menu-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .assetalk-menu-toggle[aria-expanded="true"] .assetalk-menu-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Slide-down navigation panel. */
    .assetalk-navigation.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: auto;
        margin: 0;
        padding: 12px 20px 16px;
        background: #ffffff;
        border-bottom: 1px solid #e5e5e5;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
        z-index: 9998;
    }

    .assetalk-navigation.is-open .assetalk-menu {
        flex-direction: column;
        align-items: stretch;
        height: auto;
        gap: 0;
        margin: 0;
    }

    .assetalk-navigation.is-open .assetalk-menu > li {
        height: auto;
        border-bottom: 1px solid #f0f0f0;
    }

    .assetalk-navigation.is-open .assetalk-menu > li > a {
        height: 48px;
        white-space: normal;
    }

    /* The search / language / trade actions sit in the header bar on
       desktop; inside the offcanvas panel they become a row of their
       own under the menu links. */
    .assetalk-navigation.is-open .assetalk-header-actions {
        display: flex;
        align-items: center;
        height: auto;
        margin: 0;
        padding-top: 14px;
        border-top: 1px solid #f0f0f0;
    }

    .assetalk-navigation.is-open .assetalk-trade {
        margin-left: auto;
    }

    .assetalk-navigation.is-open .assetalk-divider {
        height: 32px;
        margin: 0 14px;
    }

    /* Carets shown only on touch/small screens. */
    .assetalk-menu .submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 48px;
        margin-left: auto;
        background: transparent;
        border: 0;
        color: #111111;
        cursor: pointer;
        flex-shrink: 0;
    }

    .assetalk-menu li.is-open > .submenu-toggle svg {
        transform: rotate(180deg);
    }

    .assetalk-menu .submenu-toggle svg {
        transition: transform .2s ease;
    }

    .assetalk-menu li > .sub-menu {
        display: none;
        position: static;
        width: 100%;
        padding: 4px 0 8px 12px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .assetalk-menu li.is-open > .sub-menu {
        display: block;
    }

    .assetalk-menu li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

}

/* =========================================================
   BLOG INDEX (index.php)
========================================================= */

.assetalk-blog-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #f0f2f5;
}

.assetalk-blog-header-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 34px 30px 28px;
    box-sizing: border-box;
}

.assetalk-blog-header h1 {
    margin: 0;
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 38px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.assetalk-blog-header h1 span {
    color: #ffad20;
}

.assetalk-blog-header-subtitle {
    margin: 8px 0 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.assetalk-blog-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 30px 0;
    box-sizing: border-box;
}

/* Featured lead post. */
.assetalk-blog-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    margin: 0 0 40px;
    background: #ffffff;
    border: 1px solid #e8ebf2;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assetalk-blog-featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.assetalk-blog-featured-image {
    position: relative;
    min-height: 340px;
    background: #eef1f5;
}

.assetalk-blog-featured-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.assetalk-blog-featured-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.assetalk-blog-featured-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffad20, var(--color-amber) 60%, #f3c96b);
}

.assetalk-blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 36px;
    box-sizing: border-box;
}

.assetalk-blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.assetalk-blog-featured-badge {
    display: inline-block;
    padding: 4px 11px;
    background: #ffad20;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
    text-transform: uppercase;
    border-radius: 999px;
}

.assetalk-blog-featured-meta .assetalk-blog-card-category {
    margin-bottom: 0;
}

.assetalk-blog-featured-title {
    margin: 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 750;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.assetalk-blog-featured-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.assetalk-blog-featured-title a:hover {
    color: #ffad20;
}

.assetalk-blog-featured-excerpt {
    margin: 0 0 18px;
    color: #667085;
    font-size: 15px;
    line-height: 1.55;
}

.assetalk-blog-featured-meta-row,
.assetalk-blog-card-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.assetalk-blog-meta-dot {
    width: 4px;
    height: 4px;
    background: #d0d5dd;
    border-radius: 50%;
}

.assetalk-blog-read-more {
    align-self: flex-start;
    color: #ffad20;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.assetalk-blog-read-more:hover {
    color: #e08f00;
}

/* Post grid. */
.assetalk-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.assetalk-blog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e8ebf2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assetalk-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.09);
}

.assetalk-blog-card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eef1f5;
}

.assetalk-blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.assetalk-blog-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.assetalk-blog-card:hover .assetalk-blog-card-img {
    transform: scale(1.05);
}

.assetalk-blog-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.assetalk-blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px 22px;
    box-sizing: border-box;
}

.assetalk-blog-card-category {
    align-self: flex-start;
    margin-bottom: 8px;
    color: #ffad20;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
}

.assetalk-blog-card-category:hover {
    color: #e08f00;
}

.assetalk-blog-card-title {
    margin: 0 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.assetalk-blog-card-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.assetalk-blog-card-title a:hover {
    color: #ffad20;
}

.assetalk-blog-card-excerpt {
    flex: 1;
    margin: 0 0 16px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.assetalk-blog-card-footer {
    margin-bottom: 0;
}

/* Pagination. */
.assetalk-blog-container .pagination {
    margin-top: 44px;
}

.assetalk-blog-container .pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.assetalk-blog-container .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e8ebf2;
    border-radius: 10px;
    box-sizing: border-box;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.assetalk-blog-container .pagination .page-numbers:hover {
    color: #ffad20;
    border-color: #ffad20;
}

.assetalk-blog-container .pagination .page-numbers.current {
    color: #ffffff;
    background: #ffad20;
    border-color: #ffad20;
}

/* Responsive. */
@media (max-width: 1000px) {

    .assetalk-blog-featured {
        grid-template-columns: 1fr;
    }

    .assetalk-blog-featured-image,
    .assetalk-blog-featured-img {
        min-height: 280px;
    }

    .assetalk-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .assetalk-blog-header-inner,
    .assetalk-blog-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .assetalk-blog-header {
        padding-top: 24px;
    }

    .assetalk-blog-header h1 {
        font-size: 30px;
    }

    .assetalk-blog-featured-content {
        padding: 24px 22px;
    }

    .assetalk-blog-featured-title {
        font-size: 24px;
    }

    .assetalk-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .assetalk-blog-featured,
    .assetalk-blog-card,
    .assetalk-blog-card-img,
    .assetalk-blog-featured-title a,
    .assetalk-blog-card-title a,
    .assetalk-blog-card-category,
    .assetalk-blog-read-more,
    .assetalk-blog-container .pagination .page-numbers {
        transition: none;
    }
}


