/*!
Theme Name: Vettio Blog Theme
Theme URI: https://vettio.com/
Author: Vettio
Author URI: https://vettio.com/
Description: A modern, AI-powered hiring insights blog theme for Vettio
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: vettio-theme
Tags: blog, custom-menu, featured-images, custom-logo

Vettio Blog Theme - AI-Powered Hiring Insights
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary-purple: #7879f1;
    --dark-text: #252525;
    --gray-text: #424242;
    --light-gray: #636471;
    --white: #ffffff;
    --gradient-start: #8952e0;
    --gradient-end: #6f5bff;
    --font-raleway: 'Raleway', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

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

body {
    font-family: var(--font-raleway);
    line-height: 1.5;
    color: var(--dark-text);
    background: var(--white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
}

/* Page Background Gradients */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 800px;
    background:
        linear-gradient(180deg, rgba(255, 220, 180, 0.4) 0%, rgba(255, 245, 230, 0.2) 40%, transparent 100%);
    pointer-events: none;
    z-index: -2;
}

.page-wrapper {
    position: relative;
}

/* Background Decorative Elements */
.page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 417px;
    height: 417px;
    background: #AD90F3;
    border-radius: 417px;
    filter: blur(300px);
    pointer-events: none;
    z-index: -1;
}

.page-wrapper::after {
    content: '';
    position: absolute;
    top: 800px;
    right: -150px;
    width: 417px;
    height: 417px;
    background: #AD90F3;
    border-radius: 417px;
    filter: blur(300px);
    pointer-events: none;
    z-index: -1;
}

/* Additional Background Blobs */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    width: 417px;
    height: 417px;
    background: #AD90F3;
    border-radius: 417px;
    filter: blur(300px);
    pointer-events: none;
}

.bg-blob--1 {
    top: 2300px;
    left: -150px;
    background: #F99D1B;
}

.bg-blob--2 {
    top: 1700px;
    right: -150px;
}

.bg-blob--3 {
    top: 3900px;
    left: -150px;
    background: #F99D1B;
}

.bg-blob--4 {
    top: 4600px;
    right: -150px;
}

.bg-blob--5 {
    top: 5300px;
    left: -150px;
    background: #F99D1B;
}

.bg-blob--6 {
    top: 5400px;
    right: -150px;
}

/* Dot Grid Pattern */
.dot-grid {
    position: absolute;
    top: 1520px;
    left: 50%;
    transform: translateX(-50%);
    width: 1515px;
    height: 230px;
    background-image:
        radial-gradient(circle, rgba(120, 121, 241, 0.08) 2px, transparent 2px);
    background-size: 22.8px 22.8px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.dot-grid--2 {
    top: 1750px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ========================================
   Header Section
   ======================================== */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1196px;
    margin: 0 auto;
    padding: 20px 0;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.header__logo img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

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

.header__nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__nav-link {
    font-family: var(--font-raleway);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    transition: color 0.3s ease;
}

.header__nav-link:hover {
    color: var(--primary-purple);
}

/* CTA Button */
.header__cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-purple);
    color: var(--white);
    font-family: var(--font-raleway);
    font-size: 17px;
    font-weight: 700;
    line-height: 18px;
    padding: 16px 32px;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    box-shadow: 0px 12px 56px 0px rgba(120, 121, 241, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 16px 60px 0px rgba(120, 121, 241, 0.9);
}

/* Mobile Menu Toggle Button */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__menu-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--dark-text);
    transition: background-color 0.3s ease;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--dark-text);
    transition: transform 0.3s ease;
}

.header__menu-icon::before {
    top: -7px;
}

.header__menu-icon::after {
    bottom: -7px;
}

/* Menu open state */
.header__menu-toggle[aria-expanded="true"] .header__menu-icon {
    background-color: transparent;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::before {
    transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::after {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 65px;
    padding: 40px 20px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1063px;
    text-align: center;
}

.hero__title {
    font-family: var(--font-raleway);
    font-size: 60px;
    font-weight: 700;
    line-height: 64px;
    color: var(--dark-text);
    text-transform: capitalize;
    margin: 0;
}

.hero__title span {
    color: var(--primary-purple);
}

.hero__subtitle {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--gray-text);
    max-width: 531px;
    margin: 0;
}

.hero__subtitle span {
    color: var(--primary-purple);
}

/* Search Box */
.hero__search {
    position: relative;
    width: 100%;
    max-width: 672px;
}

.hero__search-input {
    width: 100%;
    height: 62px;
    padding: 16px 90px 16px 32px;
    border: none;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.1);
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark-text);
    outline: none;
}

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

.hero__search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 40px;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0px 4px 15px rgba(111, 91, 255, 0.4);
}

.hero__search-btn img {
    width: 16px;
    height: 16px;
}

/* ========================================
   Category Tabs Section
   ======================================== */
.category-tabs {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.1);
    padding: 32px 24px;
}

.category-tabs__container {
    max-width: 1400px;
    margin: 0 auto;
}

.category-tabs__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 16px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-tabs__item {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #334155;
    background: transparent;
    border: none;
    padding: 8px 24px;
    border-radius: 9999px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-tabs__item:hover {
    color: var(--gradient-start);
}

.category-tabs__item--active,
.category-tabs__item.current-cat a {
    background-color: #8952e0;
    color: var(--white);
}

.category-tabs__item--active:hover {
    color: var(--white);
    background-color: #7a45d1;
}

/* ========================================
   Featured Card Section
   ======================================== */
.featured-card {
    padding: 40px 24px;
}

.featured-card__container {
    max-width: 1232px;
    margin: 0 auto;
}

.featured-card__wrapper {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.featured-card__image-wrapper {
    position: relative;
    width: 50%;
    min-height: 535px;
}

.featured-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.featured-card__badge {
    position: absolute;
    top: 25px;
    left: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    padding: 8px 16px;
    border-radius: 9999px;
}

.featured-card__badge-icon {
    width: 16px;
    height: 14px;
}

.featured-card__badge span {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.featured-card__content {
    width: 50%;
    padding: 40px 48px;
    position: relative;
}

/* Vettio Icon with Pulse Animation */
.featured-card__icon-wrapper {
    position: absolute;
    top: -2px;
    left: 18px;
    width: 112px;
    height: 112px;
}

.featured-card__pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(98, 77, 227, 0.5);
    border-radius: 14px;
    animation: pulse 2s ease-out infinite;
}

.featured-card__pulse--delayed {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.featured-card__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 53px;
    height: 54px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 60%, rgba(231, 228, 251, 1) 100%);
    border: 1px solid rgba(98, 77, 227, 0.5);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.featured-card__icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Category Tag */
.featured-card__category {
    display: inline-block;
    margin-left: 70px;
    margin-bottom: 16px;
}

.featured-card__category span,
.featured-card__category a {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    color: #8952e0;
    padding: 5px 20px;
    border: 1px solid rgba(139, 82, 224, 0.2);
    border-radius: 9999px;
}

/* Title */
.featured-card__title {
    font-family: var(--font-montserrat);
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: #0f172a;
    margin-bottom: 16px;
}

.featured-card__title a {
    color: inherit;
}

.featured-card__title .text-orange {
    font-family: var(--font-raleway);
    font-weight: 600;
    color: #f99d1b;
    text-transform: capitalize;
}

.featured-card__title .text-purple {
    color: var(--primary-purple);
}

/* Description */
.featured-card__description {
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #334155;
    margin-bottom: 24px;
}

/* Author Info */
.featured-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.featured-card__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-card__author-info {
    display: flex;
    flex-direction: column;
}

.featured-card__author-name {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.featured-card__author-meta {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

/* CTA Button */
.featured-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-purple);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 13px;
    box-shadow: 0px 12px 56px 0px rgba(120, 121, 241, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 16px 60px 0px rgba(120, 121, 241, 0.5);
}

/* ========================================
   Blog Cards Grid Section
   ======================================== */
.blog-grid {
    padding: 40px 24px;
}

.blog-grid__container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-grid__title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 600;
    line-height: 67px;
    text-align: center;
    text-transform: capitalize;
    color: #0F172A;
    margin-bottom: 16px;
}

.blog-grid__title span {
    color: #F99D1B;
}

.blog-grid__subtitle {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #64748b;
    text-align: center;
    max-width: 672px;
    margin: 0 auto 40px;
}

.blog-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
}

.blog-grid__small-cards-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Blog Card Base Styles */
.blog-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 16px 50px 0px rgba(0, 0, 0, 0.15);
}

.blog-card__image-wrapper {
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-card__content {
    padding: 32px;
}

.blog-card__category {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 500;
    color: #8952e0;
    padding: 4px 16px;
    border: 1px solid rgba(139, 82, 224, 0.2);
    border-radius: 9999px;
    margin-bottom: 16px;
}

.blog-card__category a {
    color: inherit;
}

.blog-card__title {
    font-family: var(--font-montserrat);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.blog-card__title a {
    color: inherit;
}

.blog-card__excerpt {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #334155;
    margin-bottom: 20px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.blog-card__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card__author-name,
.blog-card__read-time,
.blog-card__separator {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

.blog-card__link {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    color: #8952e0;
    transition: color 0.3s ease;
}

.blog-card__link:hover {
    color: var(--primary-purple);
}

/* Large Card Specific Styles */
.blog-card--large {
    display: flex;
    flex-direction: column;
}

.blog-card--large .blog-card__image-wrapper {
    height: 256px;
    flex-shrink: 0;
}

.blog-card--large .blog-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card--large .blog-card__title {
    font-size: 24px;
    line-height: 30px;
}

.blog-card--large .blog-card__excerpt {
    line-height: 26px;
    flex: 1;
}

/* Small Card Specific Styles */
.blog-card--small {
    display: flex;
    flex-direction: column;
}

.blog-card--small .blog-card__image-wrapper {
    height: 180px;
    flex-shrink: 0;
}

.blog-card--small .blog-card__content {
    padding: 16px;
    flex: 1;
}

.blog-card--small .blog-card__title {
    font-size: 16px;
    line-height: 22px;
}

.blog-card--small .blog-card__meta {
    margin-bottom: 0;
}

.blog-card--small .blog-card__author-name,
.blog-card--small .blog-card__read-time,
.blog-card--small .blog-card__separator {
    font-size: 12px;
    line-height: 16px;
}

/* ========================================
   Blog List Section
   ======================================== */
.blog-list {
    padding: 60px 24px;
}

.blog-list__container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-list__title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 600;
    line-height: 67px;
    text-align: center;
    text-transform: capitalize;
    color: #0F172A;
    margin-bottom: 16px;
}

.blog-list__title .text-purple {
    color: #602ec9;
}

.blog-list__title .text-orange {
    color: #F99D1B;
}

.blog-list__subtitle {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #64748b;
    text-align: center;
    max-width: 672px;
    margin: 0 auto 48px;
}

.blog-list__articles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Article Card (Horizontal) */
.article-card {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 16px 50px 0px rgba(0, 0, 0, 0.15);
}

.article-card__image-wrapper {
    width: 300px;
    min-height: 249px;
    flex-shrink: 0;
    overflow: hidden;
}

.article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    transition: transform 0.3s ease;
}

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

.article-card__content {
    flex: 1;
    padding: 16px 32px 16px 24px;
    display: flex;
    flex-direction: column;
}

.article-card__category {
    display: inline-block;
    width: fit-content;
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 500;
    color: #8952e0;
    padding: 4px 16px;
    border: 1px solid rgba(139, 82, 224, 0.2);
    border-radius: 9999px;
    margin-bottom: 12px;
}

.article-card__category a {
    color: inherit;
}

.article-card__title {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    color: #0f172a;
    margin-bottom: 12px;
}

.article-card__title a {
    color: inherit;
}

.article-card__excerpt {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #334155;
    margin-bottom: 16px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.article-card__author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.article-card__author-name,
.article-card__read-time,
.article-card__date,
.article-card__separator {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #64748b;
}

.article-card__link {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    color: #8952e0;
    transition: color 0.3s ease;
}

.article-card__link:hover {
    color: var(--primary-purple);
}

/* ========================================
   Strategy Cards Section
   ======================================== */
.strategy-cards {
    padding: 60px 24px;
}

.strategy-cards__container {
    max-width: 1280px;
    margin: 0 auto;
}

.strategy-cards__title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 600;
    line-height: 67px;
    text-align: center;
    text-transform: capitalize;
    color: #0F172A;
    margin-bottom: 16px;
}

.strategy-cards__title .text-purple {
    color: #7879f1;
}

.strategy-cards__title .text-orange {
    color: #F99D1B;
}

.strategy-cards__subtitle {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #64748b;
    text-align: center;
    max-width: 672px;
    margin: 0 auto 48px;
}

.strategy-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Strategy Card */
.strategy-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 16px 50px 0px rgba(0, 0, 0, 0.15);
}

.strategy-card__image-wrapper {
    height: 256px;
    overflow: hidden;
}

.strategy-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.strategy-card:hover .strategy-card__image {
    transform: scale(1.05);
}

.strategy-card__content {
    padding: 24px;
}

.strategy-card__title {
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: #0f172a;
    margin-bottom: 12px;
}

.strategy-card__title a {
    color: inherit;
}

.strategy-card__excerpt {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #334155;
    margin-bottom: 16px;
}

.strategy-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.strategy-card__author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.strategy-card__author-name,
.strategy-card__read-time,
.strategy-card__separator {
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #64748b;
}

.strategy-card__link {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    color: #8952e0;
    transition: color 0.3s ease;
}

.strategy-card__link:hover {
    color: var(--primary-purple);
}

/* ========================================
   Newsletter Section
   ======================================== */
.newsletter {
    padding: 80px 20px;
    text-align: center;
}

.newsletter__container {
    max-width: 943px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Pulse Logo Animation */
.newsletter__logo-wrapper {
    position: relative;
    width: 395px;
    height: 395px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.newsletter__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(120, 121, 241, 0.3);
    animation: pulse-ring 3s ease-out infinite;
}

.newsletter__pulse--1 {
    animation-delay: 0s;
}

.newsletter__pulse--2 {
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.newsletter__logo-outer {
    width: 187px;
    height: 189px;
    border-radius: 47px;
    border: 4px solid rgba(98, 77, 227, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 60%, rgba(231, 228, 251, 0.3) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    box-sizing: border-box;
}

.newsletter__logo-inner {
    width: 124px;
    height: 126px;
    border-radius: 32px;
    border: 2.6px solid rgba(98, 77, 227, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 60%, rgba(231, 228, 251, 0.3) 100%);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px;
    box-sizing: border-box;
}

.newsletter__logo-img {
    width: 82px;
    height: 84px;
    object-fit: contain;
}

.newsletter__title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 600;
    line-height: 67px;
    color: #020618;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.newsletter__subtitle {
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #334155;
    max-width: 750px;
    margin-bottom: 32px;
}

.newsletter__form {
    display: flex;
    align-items: center;
    width: 672px;
    height: 62px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.1);
    padding: 0 32px;
    box-sizing: border-box;
    margin-bottom: 24px;
}

.newsletter__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark-text);
    outline: none;
}

.newsletter__input::placeholder {
    color: #636471;
}

.newsletter__btn {
    background: transparent;
    border: none;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-purple);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.newsletter__btn:hover {
    opacity: 0.8;
}

.newsletter__disclaimer {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #64748b;
}

/* ========================================
   Footer Section
   ======================================== */
.footer {
    position: relative;
    padding: 20px;
    padding-bottom: 40px;
}

.footer__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer__shape {
    position: absolute;
}

/* Left ellipse vector */
.footer__shape--left {
    width: 315px;
    height: 316px;
    bottom: -150px;
    right: -100px;
    background-image: url('assets/images/footer-ellipse.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Right ellipse vector */
.footer__shape--right {
    width: 315px;
    height: 316px;
    bottom: -150px;
    left: -100px;
    background-image: url('assets/images/footer-ellipse.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Center large chevron SVG */
.footer__shape--center {
    width: 1190px;
    height: 385px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('assets/images/footer-chevron.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.footer__card {
    max-width: 1331px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #f99d1b;
    border-radius: 24px;
    box-shadow: 0px 10px 45px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.footer__content {
    padding: 44px;
}

.footer__main {
    display: flex;
    gap: 68px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 200px;
}

.footer__brand {
    flex: 0 0 385px;
    max-width: 385px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer__logo img {
    height: 34px;
    width: auto;
}

.footer__tagline {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #424242;
    margin: 0;
}

.footer__tagline .text-iris {
    color: #5D5FEF;
}

.footer__nav {
    flex-shrink: 0;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__nav-link {
    font-family: var(--font-raleway);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--primary-purple);
}

.footer__social {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-left: auto;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__social-link svg {
    width: auto;
    height: 18px;
}

.footer__divider {
    display: none;
}

.footer__copyright {
    font-family: var(--font-raleway);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #020618;
    text-align: center;
    margin-top: 18px;
}

/* Text Color Utilities */
.text-orange {
    color: #f99d1b !important;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.text-iris {
    color: #5D5FEF !important;
}

/* ========================================
   WordPress Core Styles
   ======================================== */
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/* Comments */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* Widgets */
.widget {
    margin: 0 0 1.5em;
}

.widget select {
    max-width: 100%;
}

/* Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/* Posts Navigation */
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    padding: 40px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.posts-navigation .nav-previous a,
.posts-navigation .nav-next a,
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    color: #8952e0;
    transition: color 0.3s ease;
}

.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover,
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
    color: var(--primary-purple);
}

/* ========================================
   Single Post Styles
   ======================================== */

/* Single Hero */
.single-hero {
    padding: 60px 24px 40px;
    text-align: center;
}

.single-hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.single-hero__category {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    color: #8952e0;
    padding: 6px 20px;
    border: 1px solid rgba(137, 82, 224, 0.2);
    border-radius: 9999px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.single-hero__category:hover {
    background: rgba(137, 82, 224, 0.1);
}

.single-hero__title {
    font-family: var(--font-raleway);
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: #0f172a;
    margin: 0 0 20px;
}

.single-hero__excerpt {
    font-family: var(--font-montserrat);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #64748b;
    margin: 0 0 32px;
}

.single-hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.single-hero__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-hero__author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.single-hero__author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.single-hero__author-name {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.single-hero__author-date {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
}

/* Single Hero Actions (Share & Listen) */
.single-hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.single-hero__listen-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-hero__listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(120, 121, 241, 0.4);
}

.single-hero__listen-btn--playing {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.single-hero__listen-btn svg {
    width: 16px;
    height: 16px;
}

.single-hero__share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single-hero__share-label {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.single-hero__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-hero__share-btn:hover {
    background: var(--primary-purple);
    color: #fff;
    transform: translateY(-2px);
}

.single-hero__copy-btn--copied {
    background: #10b981;
    color: #fff;
}

@media (max-width: 768px) {
    .single-hero__meta {
        flex-direction: column;
        gap: 20px;
    }

    .single-hero__actions {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Table of Contents */
.single-toc {
    padding: 0 24px 40px;
}

.single-toc__container {
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(120, 121, 241, 0.05) 0%, rgba(173, 144, 243, 0.08) 100%);
    border: 1px solid rgba(120, 121, 241, 0.15);
    border-radius: 16px;
    padding: 24px;
}

.single-toc__header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-raleway);
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.single-toc__header svg {
    color: var(--primary-purple);
}

.single-toc__toggle {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 4px;
    transition: transform 0.3s ease;
}

.single-toc__toggle--collapsed {
    transform: rotate(-90deg);
}

.single-toc__nav {
    transition: all 0.3s ease;
    max-height: 500px;
    overflow: hidden;
}

.single-toc__nav--collapsed {
    max-height: 0;
    margin-bottom: 0;
}

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

.single-toc__item {
    margin-bottom: 8px;
}

.single-toc__item--sub {
    padding-left: 20px;
}

.single-toc__link {
    font-family: var(--font-montserrat);
    font-size: 15px;
    color: #475569;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.single-toc__link:hover {
    background: rgba(120, 121, 241, 0.1);
    color: var(--primary-purple);
}

.single-toc__item--sub .single-toc__link {
    font-size: 14px;
    color: #64748b;
}

/* Hide duplicate featured image in content */
.single-article__content > p:first-child img[class*="wp-image"],
.single-article__content > figure:first-child,
.single-article__content > .wp-block-image:first-child {
    display: none;
}

/* Single Featured Image */
.single-featured-image {
    padding: 0 24px 40px;
}

.single-featured-image__container {
    max-width: 1000px;
    margin: 0 auto;
}

.single-featured-image__img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Single Article */
.single-article {
    padding: 0 24px;
}

.single-article__container {
    max-width: 760px;
    margin: 0 auto;
}

.single-article__content {
    font-family: var(--font-montserrat);
    font-size: 18px;
    line-height: 32px;
    color: #334155;
}

.single-article__content p {
    margin-bottom: 24px;
}

.single-article__content > h2 {
    font-family: var(--font-raleway);
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #0f172a;
    margin: 48px 0 24px;
}

.single-article__content > h3 {
    font-family: var(--font-raleway);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #0f172a;
    margin: 36px 0 16px;
}

.single-article__content > h4 {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin: 28px 0 12px;
}

.single-article__content a {
    color: var(--primary-purple);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-article__content a:hover {
    text-decoration: none;
}

.single-article__content img {
    border-radius: 16px;
    margin: 32px 0;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
}

.single-article__content blockquote {
    border-left: 4px solid var(--primary-purple);
    padding: 20px 0 20px 24px;
    margin: 32px 0;
    background: rgba(137, 82, 224, 0.05);
    border-radius: 0 12px 12px 0;
}

.single-article__content blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #475569;
    margin: 0;
}

.single-article__content ul,
.single-article__content ol {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.single-article__content ul li,
.single-article__content ol li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
}

/* Unordered list - purple bullet */
.single-article__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #8952e0;
    border-radius: 50%;
}

/* Ordered list - purple numbers */
.single-article__content ol {
    counter-reset: list-counter;
}

.single-article__content ol li {
    counter-increment: list-counter;
}

.single-article__content ol li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 700;
    color: #8952e0;
}

/* Nested lists */
.single-article__content ul ul,
.single-article__content ol ol,
.single-article__content ul ol,
.single-article__content ol ul {
    margin: 12px 0;
}

.single-article__content ul ul li::before {
    width: 6px;
    height: 6px;
    background: transparent;
    border: 2px solid #8952e0;
}

.single-article__content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 32px 0;
    font-size: 14px;
    line-height: 24px;
}

.single-article__content code {
    background: rgba(137, 82, 224, 0.1);
    color: #8952e0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 15px;
}

.single-article__content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Tags */
.single-article__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.single-article__tags-label {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.single-article__tag {
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    padding: 6px 16px;
    background: rgba(100, 116, 139, 0.1);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.single-article__tag:hover {
    color: #8952e0;
    background: rgba(137, 82, 224, 0.1);
}

/* Author Box */
.author-box {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
}

.author-box__avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box__info {
    flex: 1;
}

.author-box__label {
    font-family: var(--font-montserrat);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8952e0;
}

.author-box__name {
    font-family: var(--font-montserrat);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 8px 0 12px;
}

.author-box__bio {
    font-family: var(--font-montserrat);
    font-size: 15px;
    line-height: 24px;
    color: #64748b;
    margin: 0;
}

/* Single Navigation */
.single-navigation {
    padding: 60px 24px;
}

.single-navigation__container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.single-navigation__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.single-navigation__link:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.single-navigation__link--prev {
    text-align: left;
}

.single-navigation__link--next {
    text-align: right;
}

.single-navigation__link--empty {
    background: transparent;
    border: none;
}

.single-navigation__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    color: #8952e0;
}

.single-navigation__link--next .single-navigation__label {
    justify-content: flex-end;
}

.single-navigation__title {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    line-height: 24px;
}

/* Single Comments */
.single-comments {
    padding: 0 24px 60px;
}

.single-comments__container {
    max-width: 760px;
    margin: 0 auto;
}

.single-comments .comments-title {
    font-family: var(--font-raleway);
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 32px;
}

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

.single-comments .comment {
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    margin-bottom: 16px;
}

.single-comments .comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.single-comments .comment-author img {
    border-radius: 50%;
}

.single-comments .comment-author .fn {
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.single-comments .comment-content {
    font-family: var(--font-montserrat);
    font-size: 15px;
    line-height: 26px;
    color: #475569;
}

.single-comments .comment-reply-link {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 500;
    color: #8952e0;
}

.single-comments .comment-form input[type="text"],
.single-comments .comment-form input[type="email"],
.single-comments .comment-form input[type="url"],
.single-comments .comment-form textarea {
    width: 100%;
    padding: 16px;
    font-family: var(--font-montserrat);
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    outline: none;
    transition: border-color 0.3s ease;
}

.single-comments .comment-form input:focus,
.single-comments .comment-form textarea:focus {
    border-color: var(--primary-purple);
}

.single-comments .comment-form .submit {
    background: var(--primary-purple);
    color: white;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-comments .comment-form .submit:hover {
    background: #7a45d1;
    box-shadow: 0px 8px 30px rgba(137, 82, 224, 0.3);
}

/* ========================================
   Callout & Info Boxes
   ======================================== */
.single-article__content [class*="callout"],
.single-article__content [class*="info-box"],
.single-article__content [class*="infobox"],
.single-article__content [class*="notice"],
.single-article__content [class*="alert"],
.single-article__content [class*="tip"],
.single-article__content [class*="note"],
.single-article__content [class*="warning"],
.single-article__content [class*="highlight-box"],
.single-article__content .wp-block-quote,
.single-article__content aside {
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid #8952e0;
    border-radius: 0 16px 16px 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-family: var(--font-montserrat);
    font-size: 16px;
    line-height: 28px;
    color: #475569;
}

.single-article__content [class*="warning"] {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.single-article__content [class*="success"],
.single-article__content [class*="correct"] {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.single-article__content [class*="error"],
.single-article__content [class*="incorrect"],
.single-article__content [class*="danger"] {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* ========================================
   Tables (only direct child tables, not inside interactive components)
   ======================================== */
.single-article__content > table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.single-article__content > table th {
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0f172a;
    background: rgba(137, 82, 224, 0.08);
    padding: 16px 20px;
    text-align: left;
}

.single-article__content > table td {
    font-family: var(--font-montserrat);
    font-size: 15px;
    color: #475569;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.single-article__content > table tr:last-child td {
    border-bottom: none;
}

.single-article__content > table tr:hover td {
    background: rgba(137, 82, 224, 0.03);
}

/* ========================================
   Embed & Media Boxes
   ======================================== */
.single-article__content iframe,
.single-article__content .wp-block-embed,
.single-article__content [class*="embed"],
.single-article__content [class*="video"],
.single-article__content .wp-block-video {
    border-radius: 16px;
    overflow: hidden;
    margin: 32px 0;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.single-article__content .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.single-article__content .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* ========================================
   Form Focus Color
   ======================================== */
.single-article__content input:focus,
.single-article__content textarea:focus,
.single-article__content select:focus {
    border-color: #8952e0 !important;
    outline-color: #8952e0 !important;
}

/* ========================================
   Archive / Category Page Styles
   ======================================== */
.hero--archive {
    padding-bottom: 40px;
}

.hero__label {
    display: inline-block;
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8952e0;
    padding: 6px 20px;
    background: rgba(137, 82, 224, 0.1);
    border-radius: 9999px;
    margin-bottom: 16px;
}

/* Archive Posts Grid */
.archive-posts {
    padding: 40px 24px 60px;
}

.archive-posts__container {
    max-width: 1280px;
    margin: 0 auto;
}

.archive-posts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Archive Blog Card Variant */
.blog-card--archive {
    display: flex;
    flex-direction: column;
}

.blog-card--archive .blog-card__image-wrapper {
    height: 220px;
    flex-shrink: 0;
}

.blog-card--archive .blog-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card--archive .blog-card__title {
    font-size: 20px;
    line-height: 26px;
}

.blog-card--archive .blog-card__excerpt {
    flex: 1;
    font-size: 14px;
    line-height: 24px;
}

/* Archive Pagination */
.archive-posts__pagination {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.archive-posts__pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.archive-posts__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.archive-posts__pagination .page-numbers:hover {
    color: #8952e0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.1);
}

.archive-posts__pagination .page-numbers.current {
    background: #8952e0;
    color: var(--white);
    box-shadow: 0px 8px 30px rgba(137, 82, 224, 0.3);
}

.archive-posts__pagination .prev,
.archive-posts__pagination .next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-weight: 600;
    color: #8952e0;
}

.archive-posts__pagination .prev:hover,
.archive-posts__pagination .next:hover {
    background: rgba(137, 82, 224, 0.1);
}

/* Empty State */
.archive-posts--empty .archive-posts__container {
    padding: 80px 24px;
}

.archive-posts__empty {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.archive-posts__empty h2 {
    font-family: var(--font-raleway);
    font-size: 32px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.archive-posts__empty p {
    font-family: var(--font-montserrat);
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
}

/* No Search Results */
.archive-posts__no-results {
    text-align: center;
    padding: 60px 24px;
    max-width: 500px;
    margin: 0 auto;
}

.archive-posts__no-results h3 {
    font-family: var(--font-raleway);
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.archive-posts__no-results p {
    font-family: var(--font-montserrat);
    font-size: 16px;
    color: #64748b;
}

/* Homepage No Search Results */
.no-search-results {
    text-align: center;
    padding: 80px 24px;
    max-width: 500px;
    margin: 0 auto;
}

.no-search-results__container {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(249, 157, 27, 0.05) 100%);
    border-radius: 16px;
    padding: 60px 40px;
}

.no-search-results h3 {
    font-family: var(--font-raleway);
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.no-search-results p {
    font-family: var(--font-montserrat);
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-purple);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 13px;
    box-shadow: 0px 12px 56px rgba(120, 121, 241, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 16px 60px rgba(120, 121, 241, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .header {
        max-width: 100%;
        padding: 20px 40px;
    }

    .hero__content {
        padding: 0 20px;
    }

    .bg-blob {
        width: 300px;
        height: 300px;
    }

    .dot-grid {
        width: 90%;
        max-width: 1200px;
    }

    .footer__main {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer__brand {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer__social {
        margin-left: 0;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .page-wrapper::before,
    .page-wrapper::after {
        display: none;
    }

    .bg-blob {
        display: none;
    }

    .dot-grid {
        display: none;
    }

    .header {
        flex-wrap: wrap;
        padding: 20px 24px;
        position: relative;
    }

    .header__menu-toggle {
        display: flex;
        order: 2;
    }

    .header__logo {
        order: 1;
        flex: 1;
    }

    .header__nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .header__nav--open {
        max-height: 400px;
        padding-top: 20px;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
        text-align: center;
    }

    .header__nav-list li {
        width: 100%;
        text-align: center;
    }

    .header__nav-link {
        font-size: 16px;
        padding: 8px 16px;
        display: block;
        text-align: center;
    }

    .header__cta {
        order: 3;
        display: none;
    }

    .header--menu-open .header__cta {
        display: flex;
        order: 5;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 14px 24px;
    }

    .footer__shape {
        display: none;
    }

    .featured-card__wrapper {
        flex-direction: column;
    }

    .featured-card__image-wrapper {
        width: 100%;
        min-height: 350px;
    }

    .featured-card__image {
        border-radius: 24px 24px 0 0;
    }

    .featured-card__content {
        width: 100%;
        padding: 30px;
    }

    .featured-card__icon-wrapper {
        position: relative;
        top: auto;
        left: auto;
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .featured-card__category {
        margin-left: 0;
    }

    .featured-card__title {
        font-size: 28px;
        line-height: 34px;
    }

    .featured-card__description {
        font-size: 16px;
        line-height: 26px;
    }

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

    .strategy-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-posts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .hero__title {
        font-size: 48px;
        line-height: 52px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .header {
        padding: 16px 20px;
    }

    .hero {
        gap: 40px;
        padding: 30px 16px;
    }

    .hero__title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero__subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .hero__search {
        max-width: 100%;
        padding: 0;
    }

    .hero__search-input {
        font-size: 14px;
        height: 56px;
        padding: 14px 80px 14px 24px;
    }

    .hero__search-btn {
        width: 56px;
        height: 36px;
    }

    .blog-grid {
        padding: 24px 16px;
    }

    .blog-grid__title {
        font-size: 28px;
        line-height: 38px;
    }

    .blog-grid__subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

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

    .strategy-cards {
        padding: 40px 16px;
    }

    .strategy-cards__title {
        font-size: 28px;
        line-height: 38px;
    }

    .strategy-cards__subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .strategy-cards__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .archive-posts {
        padding: 24px 16px 40px;
    }

    .archive-posts__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .archive-posts__pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 6px 12px;
        font-size: 14px;
    }

    /* Single Post Tablet */
    .single-hero__title {
        font-size: 36px;
        line-height: 44px;
    }

    .single-article__content {
        font-size: 17px;
        line-height: 30px;
    }

    .blog-list {
        padding: 40px 16px;
    }

    .blog-list__title {
        font-size: 28px;
        line-height: 38px;
    }

    .blog-list__subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card__image-wrapper {
        width: 100%;
        min-height: 200px;
    }

    .article-card__image {
        border-radius: 16px 16px 0 0;
    }

    .article-card__content {
        padding: 24px;
    }

    .newsletter {
        padding: 60px 16px;
    }

    .newsletter__logo-wrapper {
        width: 280px;
        height: 280px;
    }

    .newsletter__logo-outer {
        width: 140px;
        height: 142px;
        border-radius: 35px;
        padding: 24px;
    }

    .newsletter__logo-inner {
        width: 92px;
        height: 94px;
        border-radius: 24px;
        padding: 16px;
    }

    .newsletter__logo-img {
        width: 60px;
        height: 62px;
    }

    .newsletter__title {
        font-size: 36px;
        line-height: 48px;
    }

    .newsletter__subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .newsletter__form {
        width: 100%;
        max-width: 400px;
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 12px;
        border-radius: 16px;
    }

    .newsletter__input {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .newsletter__btn {
        width: 100%;
        padding: 12px;
        background: var(--primary-purple);
        color: white;
        border-radius: 9999px;
    }

    .newsletter__disclaimer {
        font-size: 12px;
    }

    .footer {
        padding: 16px;
    }

    .footer__card {
        border-radius: 16px;
    }

    .footer__content {
        padding: 24px;
    }

    .footer__main {
        flex-direction: column;
        gap: 32px;
        min-height: auto;
    }

    .footer__brand {
        flex: 1;
    }

    .footer__tagline {
        font-size: 16px;
        line-height: 24px;
    }

    .footer__nav-list {
        gap: 16px;
    }

    .footer__nav-link {
        font-size: 14px;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .footer__shape--center {
        display: none;
    }

    .footer__shape--left,
    .footer__shape--right {
        width: 200px;
        height: 200px;
    }

    .single-post-content .entry-title {
        font-size: 32px;
        line-height: 42px;
    }

    .single-post-content .entry-content {
        font-size: 16px;
        line-height: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .header {
        padding: 12px 16px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }

    .hero {
        gap: 32px;
        padding: 24px 16px;
    }

    .hero__title {
        font-size: 28px;
        line-height: 34px;
    }

    .hero__subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .hero__search-input {
        font-size: 14px;
        height: 52px;
        padding: 12px 70px 12px 20px;
    }

    .hero__search-btn {
        width: 50px;
        height: 32px;
        right: 6px;
    }

    .hero__search-btn img {
        width: 14px;
        height: 14px;
    }

    .category-tabs {
        padding: 12px;
    }

    .category-tabs__list {
        gap: 8px;
    }

    .category-tabs__item {
        font-size: 12px;
        padding: 8px 12px;
    }

    .featured-card {
        padding: 16px 12px;
    }

    .featured-card__wrapper {
        border-radius: 16px;
    }

    .featured-card__image-wrapper {
        min-height: 200px;
    }

    .featured-card__image {
        border-radius: 16px 16px 0 0;
    }

    .featured-card__content {
        padding: 20px 16px;
    }

    .featured-card__title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .featured-card__description {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .featured-card__btn {
        width: 100%;
        font-size: 14px;
        padding: 12px 20px;
    }

    .blog-grid {
        padding: 20px 12px;
    }

    .blog-grid__title {
        font-size: 24px;
        line-height: 32px;
    }

    .blog-grid__cards {
        gap: 16px;
    }

    .blog-card {
        border-radius: 12px;
    }

    .strategy-cards {
        padding: 32px 12px;
    }

    .strategy-cards__title {
        font-size: 24px;
        line-height: 32px;
    }

    .strategy-card {
        border-radius: 12px;
    }

    .strategy-card__content {
        padding: 16px;
    }

    .blog-list {
        padding: 32px 12px;
    }

    .blog-list__title {
        font-size: 24px;
        line-height: 32px;
    }

    .blog-list__articles {
        gap: 16px;
    }

    .article-card {
        border-radius: 12px;
    }

    .article-card__content {
        padding: 16px;
    }

    .newsletter {
        padding: 48px 12px;
    }

    .newsletter__logo-wrapper {
        width: 220px;
        height: 220px;
        margin-bottom: 16px;
    }

    .newsletter__title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .newsletter__subtitle {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .footer {
        padding: 12px;
        padding-bottom: 24px;
    }

    .footer__card {
        border-radius: 12px;
    }

    .footer__content {
        padding: 20px 16px;
    }

    .footer__main {
        gap: 24px;
        padding-bottom: 16px;
    }

    .footer__logo img {
        height: 28px;
    }

    .footer__tagline {
        font-size: 14px;
        line-height: 22px;
    }

    .footer__nav-list {
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__nav-link {
        font-size: 13px;
    }

    .footer__social {
        gap: 20px;
    }

    .footer__social-link svg {
        height: 16px;
    }

    .footer__copyright {
        font-size: 11px;
        margin-top: 16px;
    }

    .footer__shape--left,
    .footer__shape--right {
        display: none;
    }

    /* Single Post Mobile */
    .single-hero {
        padding: 40px 16px 24px;
    }

    .single-hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .single-hero__excerpt {
        font-size: 15px;
        line-height: 24px;
    }

    .single-featured-image {
        padding: 0 12px 24px;
    }

    .single-featured-image__img {
        border-radius: 16px;
    }

    .single-article {
        padding: 0 12px;
    }

    .single-article__content {
        font-size: 16px;
        line-height: 28px;
    }

    .single-article__content h2 {
        font-size: 24px;
        line-height: 32px;
        margin: 32px 0 16px;
    }

    .single-article__content h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .author-box__avatar {
        display: flex;
        justify-content: center;
    }

    .single-navigation {
        padding: 40px 12px;
    }

    .single-navigation__container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .single-navigation__link--next {
        text-align: left;
    }

    .single-navigation__link--next .single-navigation__label {
        justify-content: flex-start;
    }
}
