/* ===== ALBINFO.CH V3 - FIGMA REDESIGN ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
    --albv3-red: #cf2e2e;
    --albv3-black: #000000;
    --albv3-dark: #1a1a1a;
    --albv3-gray: #666666;
    --albv3-light-gray: #999999;
    --albv3-border: #e5e5e5;
    --albv3-bg: #ffffff;
    --albv3-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --albv3-container: 1200px;
    --albv3-gap: 16px;
}

/* ===== OVERRIDE THEME CSS VARIABLES ===== */
:root,
body,
body.newsmatic_font_typography,
body.newsmatic_font_typography.home,
body.newsmatic_font_typography.blog {
    --newsmatic-global-preset-color-1: #cf2e2e !important;
    --newsmatic-global-preset-color-2: #333333 !important;
    --newsmatic-global-preset-color-3: #cf2e2e !important;
    --newsmatic-global-preset-color-4: #cf2e2e !important;
    --newsmatic-global-preset-color-5: #cf2e2e !important;
    --newsmatic-global-preset-color-6: #cf2e2e !important;
    --newsmatic-global-preset-color-7: #cf2e2e !important;
    --newsmatic-global-preset-color-8: #cf2e2e !important;
    --newsmatic-global-preset-color-9: #cf2e2e !important;
    --newsmatic-global-preset-color-10: #cf2e2e !important;
    --newsmatic-global-preset-color-11: #cf2e2e !important;
    --newsmatic-global-preset-color-12: #cf2e2e !important;
    --newsmatic-global-preset-gradient-color-1: none !important;
    --newsmatic-global-preset-gradient-color-2: none !important;
    --newsmatic-global-preset-gradient-color-3: none !important;
    --newsmatic-global-preset-gradient-color-4: none !important;
    --newsmatic-global-preset-gradient-color-5: none !important;
    --newsmatic-global-preset-gradient-color-6: none !important;
    --newsmatic-global-preset-gradient-color-7: none !important;
    --newsmatic-global-preset-gradient-color-8: none !important;
    --newsmatic-global-preset-gradient-color-9: none !important;
    --newsmatic-global-preset-gradient-color-10: none !important;
    --newsmatic-global-preset-gradient-color-11: none !important;
    --newsmatic-global-preset-gradient-color-12: none !important;
}

/* ===== GLOBAL ===== */
body {
    font-family: var(--albv3-font) !important;
    background: var(--albv3-bg) !important;
    color: var(--albv3-dark) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--albv3-dark) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
a:hover {
    color: var(--albv3-red) !important;
}

* { box-sizing: border-box; }

.albv3-container {
    max-width: var(--albv3-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HIDE THEME DEFAULT ELEMENTS ===== */
.site-header,
#masthead,
.header-inner,
.bb-bldr-row,
#main-banner-section,
section.newsmatic-section.banner-layout--four,
section.newsmatic-section[class*="banner-layout"],
.after-header,
.after-header.header-layout-banner-two,
.site-footer,
footer.site-footer,
#albinfo-custom-footer,
.newsmatic_site_block_border_top::before,
.newsmatic_site_block_border_top::after,
.mode_toggle_wrap,
.dark-mode-toggle,
.site-description,
.albinfo-top-lang-bar,
.bottom-full-width-section,
.newsmatic-section.bottom-full-width-section,
.scroll-to-top-widget,
/* Headlines / ticker bars */
.top-ticker-news,
.ticker-news-wrap,
.newsmatic-ticker-box,
.newsmatic-ticker,
.bb-bldr-widget.has-ticker,
.newsmatic-ticker-label,
[class*="ticker"],
.header-layout-banner-two {
    display: none !important;
}

/* Override main content area */
.site-content,
.newsmatic-container,
#primary,
#main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.site {
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Hide sidebar on homepage */
body.home #secondary,
body.home aside.widget-area,
body.home .sidebar-column {
    display: none !important;
}

body.home #primary {
    width: 100% !important;
    float: none !important;
}

/* ===== V3 HEADER ===== */
#albinfo-v3-header {
    position: relative;
    z-index: 1000;
    background: var(--albv3-bg);
}

/* Top bar */
.albv3-topbar {
    padding: 30px 0 18px;
}

.albv3-topbar .albv3-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.albv3-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
}

.albv3-lang {
    color: var(--albv3-gray) !important;
    text-decoration: none !important;
    cursor: pointer;
    font-size: 13px !important;
    padding: 0 2px;
}

.albv3-lang.active {
    color: var(--albv3-red) !important;
    font-weight: 700;
}

.albv3-lang-sep {
    color: #ccc;
    font-size: 11px;
    padding: 0 1px;
}

.albv3-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.albv3-logo-img {
    max-height: 45px !important;
    width: auto !important;
}

.albv3-logo-text {
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    color: var(--albv3-black) !important;
    letter-spacing: -0.3px;
    line-height: 1 !important;
}

.albv3-logo-text span {
    color: var(--albv3-black) !important;
}

.albv3-logo-text .albv3-logo-dot {
    color: var(--albv3-red) !important;
    position: relative;
}

.albv3-search-icon button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--albv3-dark);
    padding: 4px;
}

/* Navigation */
.albv3-nav {
    border-top: 1px solid var(--albv3-border);
    border-bottom: 1px solid var(--albv3-border);
    padding: 0;
}

.albv3-nav .albv3-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.albv3-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--albv3-dark);
    padding: 14px 20px 14px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    border-right: 1px solid var(--albv3-border);
    margin-right: 8px;
}

.albv3-nav-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.albv3-nav-list::-webkit-scrollbar {
    display: none;
}

.albv3-nav-list li {
    white-space: nowrap;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.albv3-nav-list li a {
    display: block;
    padding: 14px 18px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--albv3-dark) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.albv3-nav-list li a:hover {
    color: var(--albv3-red) !important;
}

/* ===== HOMEPAGE CONTAINER ===== */
#albinfo-v3-homepage {
    background: var(--albv3-bg);
}

/* ===== SECTION COMMON ===== */
.albv3-section {
    padding: 40px 0;
}

.albv3-section-border {
    border-top: 2px solid var(--albv3-dark);
    margin-top: 0;
}

.albv3-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.albv3-section-title {
    font-family: var(--albv3-font) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--albv3-dark) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.albv3-title-red {
    color: var(--albv3-red) !important;
}

.albv3-see-all {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--albv3-dark) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.albv3-see-all i {
    font-size: 12px;
    width: 24px;
    height: 24px;
    border: 1px solid var(--albv3-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.albv3-see-all:hover {
    color: var(--albv3-red) !important;
}

/* ===== HERO SECTION ===== */
.albv3-hero {
    padding: 0 24px;
    max-width: calc(var(--albv3-container) + 48px);
    margin: 0 auto;
    padding-top: 20px;
}

.albv3-hero-main {
    display: block;
    margin-bottom: var(--albv3-gap);
}

.albv3-hero-img {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.albv3-hero-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    color: var(--albv3-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 2px;
    z-index: 2;
}

.albv3-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.albv3-cat-badge {
    display: inline-block;
    background: rgba(0,0,0,0.6);
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.3);
}

.albv3-hero-title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin: 0 0 12px 0 !important;
    max-width: 55%;
}

.albv3-hero-excerpt {
    font-size: 15px !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    max-width: 60%;
}

/* Hero 4 cards */
.albv3-hero-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--albv3-gap);
    margin-bottom: 24px;
}

.albv3-hero-card {
    display: block;
}

.albv3-hero-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.albv3-hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.albv3-hero-card-overlay h3 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

/* ===== MOST VIEWED / TALL CARDS ===== */
.albv3-tall-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--albv3-gap);
}

.albv3-tall-card {
    display: block;
}

.albv3-tall-card-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.albv3-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2;
    transition: background 0.3s;
}

.albv3-tall-card:hover .albv3-play-icon {
    background: rgba(255,255,255,0.4);
}

.albv3-play-icon i {
    color: #fff;
    font-size: 18px;
    margin-left: 3px;
}

.albv3-tall-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.albv3-tall-card-overlay h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

/* ===== AD BANNER ===== */
.albv3-ad-banner {
    padding: 40px 0;
}

.albv3-ad-placeholder {
    background: #f5ede6;
    border-radius: 8px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--albv3-light-gray);
}

/* ===== FEATURED + SIDEBAR LAYOUT ===== */
.albv3-featured-sidebar {
    display: grid;
    grid-template-columns: 60% 1fr;
    gap: 24px;
}

.albv3-featured-main {
    display: block;
}

.albv3-featured-main-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.albv3-podcast-badge {
    position: absolute;
    bottom: 110px;
    left: 24px;
    background: rgba(0,0,0,0.7);
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.albv3-podcast-badge i {
    color: var(--albv3-red);
}

.albv3-featured-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.albv3-featured-main-overlay h3 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

/* Sidebar items */
.albv3-featured-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
}

.albv3-side-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.albv3-side-item-img {
    width: 140px;
    height: 120px;
    min-width: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.albv3-side-item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.albv3-side-date {
    font-size: 12px !important;
    color: var(--albv3-light-gray) !important;
    font-weight: 400;
}

.albv3-side-item-text h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--albv3-dark) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.albv3-side-item:hover h4 {
    color: var(--albv3-red) !important;
}

/* ===== FULL-WIDTH FEATURED ===== */
.albv3-fullwidth-featured {
    margin: 0;
}

.albv3-fullwidth-featured a {
    display: block;
}

.albv3-fullwidth-img {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.albv3-fullwidth-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.albv3-fullwidth-overlay .albv3-cat-badge {
    margin-bottom: 16px;
}

.albv3-fullwidth-overlay h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    max-width: 70%;
}

/* ===== ARTICLE GRID 4x2 ===== */
.albv3-grid-4x2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.albv3-grid-card {
    display: block;
}

.albv3-grid-card-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.albv3-grid-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.albv3-grid-date {
    font-size: 12px !important;
    color: var(--albv3-light-gray) !important;
    font-weight: 400;
}

.albv3-grid-card-text h3 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--albv3-dark) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.albv3-grid-card:hover h3 {
    color: var(--albv3-red) !important;
}

/* ===== PROMO GRID ===== */
.albv3-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.albv3-promo-card {
    display: block;
}

.albv3-promo-card-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.albv3-promo-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.albv3-promo-card-text h3 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: var(--albv3-dark) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.albv3-promo-card:hover h3 {
    color: var(--albv3-red) !important;
}

/* ===== V3 FOOTER ===== */
#albinfo-v3-footer {
    background: var(--albv3-bg);
    margin-top: 40px;
}

.albv3-footer-border {
    height: 3px;
    background: var(--albv3-red);
}

/* Footer nav */
.albv3-footer-nav {
    padding: 24px 0;
    border-bottom: 1px solid var(--albv3-border);
}

.albv3-footer-nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 0;
}

.albv3-footer-nav ul li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.albv3-footer-nav ul li a {
    display: block;
    padding: 6px 20px 6px 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--albv3-dark) !important;
}

.albv3-footer-nav ul li a:hover {
    color: var(--albv3-red) !important;
}

/* Footer disclaimer */
.albv3-footer-disclaimer {
    padding: 24px 0;
    border-bottom: 1px solid var(--albv3-border);
}

.albv3-footer-disclaimer p {
    font-size: 13px !important;
    color: var(--albv3-gray) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    max-width: 60%;
}

/* Footer bottom */
.albv3-footer-bottom {
    padding: 24px 0;
    border-bottom: 1px solid var(--albv3-border);
}

.albv3-footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.albv3-footer-logo-img {
    max-height: 30px !important;
    width: auto !important;
}

.albv3-footer-logo-text {
    font-size: 24px !important;
    font-weight: 900 !important;
    color: var(--albv3-dark) !important;
}

.albv3-footer-logo-text span {
    color: var(--albv3-red) !important;
}

.albv3-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.albv3-footer-links a {
    font-size: 13px !important;
    color: var(--albv3-gray) !important;
    font-weight: 400 !important;
}

.albv3-footer-links a:hover {
    color: var(--albv3-dark) !important;
}

/* Copyright + social */
.albv3-footer-copyright {
    padding: 20px 0;
    border-bottom: 1px solid var(--albv3-border);
}

.albv3-footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.albv3-footer-copyright-row span {
    font-size: 13px;
    color: var(--albv3-gray);
}

.albv3-footer-social {
    display: flex;
    gap: 16px;
}

.albv3-footer-social a {
    font-size: 20px !important;
    color: var(--albv3-dark) !important;
}

.albv3-footer-social a:hover {
    color: var(--albv3-red) !important;
}

/* ===== SINGLE POST V3 TEMPLATE ===== */

/* Hide default theme single post elements when our template is active */
body.single-post .site-header,
body.single-post #masthead,
body.single-post .header-inner,
body.single-post .bb-bldr-row,
body.single-post .breadcrumb-wrap,
body.single-post .newsmatic-breadcrumb {
    display: none !important;
}

/* Hero image */
.albv3-single-hero {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.albv3-single-hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 30px;
    position: relative;
}

.albv3-back-btn {
    position: absolute;
    left: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.5);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 16px;
    transition: background 0.2s;
    background: rgba(0,0,0,0.15);
}

.albv3-back-btn:hover {
    background: rgba(0,0,0,0.4);
    color: #fff !important;
}

.albv3-hero-brand {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.3px;
}

.albv3-single-hero-overlay {
    padding: 0 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
}

.albv3-single-hero-title {
    font-family: var(--albv3-font) !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    max-width: 75%;
}

/* Article body */
.albv3-single-body {
    background: var(--albv3-bg);
    padding: 30px 0 60px;
}

/* Meta row */
.albv3-single-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--albv3-border);
    margin-bottom: 30px;
}

.albv3-single-date {
    font-size: 13px;
    color: var(--albv3-light-gray);
    font-family: var(--albv3-font);
}

.albv3-single-stats {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--albv3-dark);
    font-family: var(--albv3-font);
}

.albv3-single-stats i {
    margin-right: 4px;
}

/* 3-column layout: social | content | related */
.albv3-single-layout {
    display: grid;
    grid-template-columns: 50px 1fr 260px;
    gap: 30px;
    align-items: start;
}

/* Social sidebar */
.albv3-single-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 30px;
}

.albv3-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--albv3-border);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--albv3-dark) !important;
    font-size: 16px;
    background: none;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0 !important;
}

.albv3-share-btn:hover {
    background: var(--albv3-dark);
    color: #fff !important;
    border-color: var(--albv3-dark);
}

/* Article content */
.albv3-single-content {
    max-width: 680px;
}

.albv3-single-title-noimg {
    font-family: var(--albv3-font) !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: var(--albv3-dark) !important;
    margin: 0 0 24px 0 !important;
}

.albv3-single-subtitle {
    font-family: var(--albv3-font) !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: var(--albv3-dark) !important;
    margin: 0 0 24px 0 !important;
}

.albv3-single-text {
    font-family: var(--albv3-font) !important;
}

.albv3-single-text p {
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}

.albv3-single-text img {
    border-radius: 10px !important;
    max-width: 100%;
    height: auto;
}

.albv3-single-text h2,
.albv3-single-text h3,
.albv3-single-text h4 {
    font-family: var(--albv3-font) !important;
    font-weight: 700 !important;
    color: var(--albv3-dark) !important;
    margin-top: 32px !important;
    margin-bottom: 16px !important;
}

.albv3-single-text blockquote {
    border-left: 3px solid var(--albv3-red);
    padding: 12px 20px;
    margin: 24px 0;
    background: #f9f9f9;
    border-radius: 0 10px 10px 0;
}

/* Related sidebar */
.albv3-single-related {
    position: sticky;
    top: 30px;
}

.albv3-related-title {
    font-family: var(--albv3-font) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--albv3-dark) !important;
    margin: 0 0 20px 0 !important;
}

.albv3-related-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.albv3-related-img {
    width: 80px;
    height: 70px;
    min-width: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.albv3-related-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.albv3-related-item-title {
    font-family: var(--albv3-font) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--albv3-dark) !important;
    line-height: 1.35 !important;
}

.albv3-related-item:hover .albv3-related-item-title {
    color: var(--albv3-red) !important;
}

.albv3-related-date {
    font-size: 12px !important;
    color: var(--albv3-red) !important;
    font-weight: 500;
}

/* Single post responsive */
@media (max-width: 1024px) {
    .albv3-single-layout {
        grid-template-columns: 50px 1fr 200px;
        gap: 20px;
    }
    .albv3-single-hero-title {
        font-size: 28px !important;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .albv3-single-hero {
        height: 400px;
    }
    .albv3-single-hero-title {
        font-size: 24px !important;
        max-width: 100%;
    }
    .albv3-single-hero-overlay {
        padding: 0 20px 24px;
    }
    .albv3-single-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .albv3-single-social {
        flex-direction: row;
        position: static;
        order: -1;
    }
    .albv3-single-related {
        position: static;
        border-top: 1px solid var(--albv3-border);
        padding-top: 24px;
    }
    .albv3-single-subtitle {
        font-size: 24px !important;
    }
    .albv3-single-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .albv3-single-hero {
        height: 320px;
    }
    .albv3-single-hero-title {
        font-size: 20px !important;
    }
}

/* Category badges on single posts */
.post-categories li a,
ul.post-categories li a {
    background-color: var(--albv3-dark) !important;
    color: #fff !important;
    font-family: var(--albv3-font) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 4px 10px !important;
    border-radius: 2px !important;
    border: none !important;
}

/* Article feed (non-homepage) */
article .entry-title a,
.post-title a,
h2.entry-title a {
    font-family: var(--albv3-font) !important;
    color: var(--albv3-dark) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

article .entry-title a:hover,
.post-title a:hover {
    color: var(--albv3-red) !important;
}

.entry-meta,
.post-meta,
.posted-on,
.byline {
    font-family: var(--albv3-font) !important;
    color: var(--albv3-light-gray) !important;
    font-size: 12px !important;
}

/* Pagination */
.pagination .page-numbers,
.nav-links .page-numbers {
    font-family: var(--albv3-font) !important;
    background: var(--albv3-bg) !important;
    color: var(--albv3-dark) !important;
    border: 1px solid var(--albv3-border) !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    padding: 8px 14px !important;
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background: var(--albv3-dark) !important;
    color: #fff !important;
    border-color: var(--albv3-dark) !important;
}

/* ===== THEME CLEANUP ===== */
article.post {
    border-bottom: 1px solid var(--albv3-border) !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    box-shadow: none !important;
    background: transparent !important;
}

.post-thumbnail img,
article .blaze-media img {
    border-radius: 10px !important;
}

.newsmatic-post-item,
.blaze-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.site-header::after,
.site-header::before,
.main-navigation::after,
.main-navigation::before {
    display: none !important;
    background: transparent !important;
}

/* Widget title override for non-homepage */
.widget-title,
.wp-block-heading,
.newsmatic-block-title {
    font-family: var(--albv3-font) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    color: var(--albv3-dark) !important;
    text-align: left !important;
    border: none !important;
    border-top: 2px solid var(--albv3-dark) !important;
    border-left: none !important;
    padding: 12px 0 !important;
    margin-bottom: 16px !important;
    background: var(--albv3-bg) !important;
}

.widget-title::before,
.widget-title::after,
.newsmatic-block-title::before {
    display: none !important;
}

/* Sidebar styling (non-homepage) */
.sidebar-column,
#secondary,
aside.widget-area {
    border-left: 1px solid var(--albv3-border) !important;
    padding-left: 24px !important;
}

.widget {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .albv3-hero-title {
        font-size: 28px !important;
        max-width: 70%;
    }
    .albv3-hero-excerpt {
        max-width: 80%;
    }
    .albv3-hero-img {
        height: 450px;
    }
    .albv3-featured-sidebar {
        grid-template-columns: 55% 1fr;
    }
    .albv3-fullwidth-overlay h2 {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .albv3-container {
        padding: 0 16px;
    }

    .albv3-hero {
        padding: 0 16px;
    }

    .albv3-topbar .albv3-container {
        position: relative;
    }

    .albv3-logo-center {
        position: static;
        transform: none;
        text-align: center;
        flex: 1;
    }

    .albv3-logo-img {
        max-height: 32px !important;
    }

    .albv3-nav-list {
        overflow-x: auto;
    }

    .albv3-nav-list li a {
        font-size: 13px !important;
        padding: 10px 12px !important;
    }

    .albv3-hero-img {
        height: 350px;
    }

    .albv3-hero-title {
        font-size: 22px !important;
        max-width: 100%;
    }

    .albv3-hero-excerpt {
        font-size: 13px !important;
        max-width: 100%;
    }

    .albv3-hero-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .albv3-hero-card-img {
        height: 160px;
    }

    .albv3-tall-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .albv3-tall-card-img {
        height: 300px;
    }

    .albv3-featured-sidebar {
        grid-template-columns: 1fr;
    }

    .albv3-featured-main-img {
        min-height: 300px;
    }

    .albv3-featured-main-overlay h3 {
        font-size: 20px !important;
    }

    .albv3-side-item {
        gap: 12px;
    }

    .albv3-side-item-img {
        width: 100px;
        height: 80px;
        min-width: 100px;
    }

    .albv3-side-item-text h4 {
        font-size: 14px !important;
    }

    .albv3-fullwidth-img {
        height: 350px;
    }

    .albv3-fullwidth-overlay {
        padding: 24px;
    }

    .albv3-fullwidth-overlay h2 {
        font-size: 22px !important;
        max-width: 100%;
    }

    .albv3-grid-4x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .albv3-grid-card-img {
        height: 160px;
    }

    .albv3-promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .albv3-promo-card-img {
        height: 160px;
    }

    /* Footer responsive */
    .albv3-footer-nav ul {
        flex-wrap: wrap;
    }

    .albv3-footer-disclaimer p {
        max-width: 100%;
    }

    .albv3-footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .albv3-footer-links {
        gap: 16px;
    }

    .albv3-footer-copyright-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .sidebar-column, #secondary, aside.widget-area {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid var(--albv3-border) !important;
        padding-top: 24px !important;
    }
}

@media (max-width: 480px) {
    .albv3-hero-img {
        height: 280px;
    }

    .albv3-hero-title {
        font-size: 20px !important;
    }

    .albv3-hero-cards {
        grid-template-columns: 1fr;
    }

    .albv3-tall-cards {
        grid-template-columns: 1fr;
    }

    .albv3-grid-4x2 {
        grid-template-columns: 1fr;
    }

    .albv3-promo-grid {
        grid-template-columns: 1fr;
    }

    .albv3-fullwidth-img {
        height: 250px;
    }
}

/* ===== SCROLL TO TOP ===== */
#newsmatic-scroll-to-top,
.scroll-to-top-widget button {
    display: none !important;
}

/* ===== DOT INDICATORS ===== */
.albv3-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--albv3-dark);
    margin-right: 2px;
    vertical-align: middle;
}

.albv3-dot-red,
.albv3-dot.albv3-dot-red {
    background: var(--albv3-red) !important;
}

.albv3-hero-badge .albv3-dot-red {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--albv3-red);
    margin-right: 4px;
    vertical-align: middle;
}

/* ===== ARROW CIRCLE (see all button) ===== */
.albv3-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--albv3-border);
    border-radius: 50%;
    margin-left: 6px;
    transition: border-color 0.2s;
}

.albv3-arrow-circle i {
    font-size: 11px;
}

.albv3-see-all:hover .albv3-arrow-circle {
    border-color: var(--albv3-red);
}

/* ===== HEADER (no sticky, no shadow) ===== */

/* ===== SEARCH OVERLAY ===== */
.albv3-search-overlay {
    background: var(--albv3-bg);
    border-bottom: 1px solid var(--albv3-border);
    padding: 16px 0;
    animation: albv3-slideDown 0.2s ease;
}

@keyframes albv3-slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.albv3-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.albv3-search-input {
    flex: 1;
    border: none !important;
    border-bottom: 2px solid var(--albv3-dark) !important;
    background: transparent !important;
    font-family: var(--albv3-font) !important;
    font-size: 18px !important;
    padding: 8px 0 !important;
    outline: none !important;
    color: var(--albv3-dark) !important;
    border-radius: 0 !important;
}

.albv3-search-input::placeholder {
    color: var(--albv3-light-gray);
}

.albv3-search-submit,
.albv3-search-close {
    background: none !important;
    border: none !important;
    cursor: pointer;
    font-size: 18px;
    color: var(--albv3-dark);
    padding: 8px !important;
}

.albv3-search-close {
    font-size: 20px;
}

/* ===== MOBILE MENU ===== */
.albv3-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--albv3-bg);
    z-index: 10000;
    overflow-y: auto;
    animation: albv3-fadeIn 0.2s ease;
}

@keyframes albv3-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.albv3-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--albv3-border);
}

.albv3-mobile-menu-title {
    font-family: var(--albv3-font);
    font-size: 18px;
    font-weight: 800;
    color: var(--albv3-dark);
}

.albv3-mobile-close {
    background: none !important;
    border: none !important;
    cursor: pointer;
    font-size: 24px;
    color: var(--albv3-dark);
    padding: 4px !important;
}

.albv3-mobile-nav-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.albv3-mobile-nav-list li {
    border-bottom: 1px solid var(--albv3-border) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.albv3-mobile-nav-list li a {
    display: block !important;
    padding: 16px 24px !important;
    font-family: var(--albv3-font) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--albv3-dark) !important;
}

.albv3-mobile-nav-list li a:hover {
    background: #f5f5f5 !important;
    color: var(--albv3-red) !important;
}

/* Hamburger icon pair */
.albv3-hamburger-icon {
    display: flex;
    align-items: center;
    gap: 2px;
}

.albv3-hamburger-icon i:first-child {
    font-size: 16px;
}

.albv3-hamburger-icon i:last-child {
    font-size: 14px;
}

/* Show hamburger on desktop too (matching Figma) */
@media (min-width: 769px) {
    .albv3-hamburger {
        display: flex !important;
    }
    .albv3-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .albv3-hamburger {
        display: flex !important;
    }
    .albv3-nav-list {
        display: none !important;
    }
    .albv3-hamburger {
        border-right: none !important;
        margin-right: 0 !important;
    }
}

/* ===== FOOTER "Te tjera" dropdown ===== */
.albv3-footer-more a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.albv3-footer-more i {
    font-size: 10px;
}
