/* Scoped CSS Variables */
.ptw-post-wrapper {
    --ptw-bg-main: #ffffff;
    --ptw-text-main: #1E3A8A;
    --ptw-text-muted: #64748B;
    --ptw-accent-light: #DBEAFE;
    --ptw-accent-text: #3B82F6;
    --ptw-accent-btn: #3b82f6;
    --ptw-accent-hover: #2563eb;
    --ptw-dark-bg: #0F172A;
    --ptw-yellow-bg: #FFFBEB;
    --ptw-yellow-border: #FBBF24;
    --ptw-border-color: #E2E8F0;
    
    font-family: inherit;
    background-color: #fcfcfc;
    color: var(--ptw-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scoped Reset */
.ptw-post-wrapper, 
.ptw-post-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container */
.ptw-post-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 40px 24px 60px;
}

/* Header Styles */
.ptw-post-header {
    margin-bottom: 32px;
}

.ptw-post-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.ptw-post-tag {
    background-color: var(--ptw-accent-light);
    color: var(--ptw-accent-text);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.ptw-post-tag-blue {
    background-color: #EFF6FF;
    color: #2563EB;
}

.ptw-post-tag-orange {
    background-color: #FFF7ED;
    color: #EA580C;
}

.ptw-post-tag-green {
    background-color: #ECFDF5;
    color: #059669;
}

.ptw-post-tag-gray {
    background-color: #F1F5F9;
    color: #475569;
}

.ptw-post-tag-purple {
    background-color: #F5F3FF;
    color: #7C3AED;
}

.ptw-post-tag-pink {
    background-color: #FDF2F8;
    color: #DB2777;
}

.ptw-post-tag-yellow {
    background-color: #FEFCE8;
    color: #CA8A04;
}

.ptw-post-tag-teal {
    background-color: #F0FDFA;
    color: #0D9488;
}

.ptw-post-date {
    color: var(--ptw-text-muted);
    font-weight: 500;
}

.ptw-post-wrapper h1 {
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: #0F172A;
}

.ptw-post-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ptw-border-color);
}

.ptw-post-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ptw-post-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(226, 232, 240, 1);
    color: #475569;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
}

.avatar-initials {
    position: absolute;
    z-index: 1;
}

.ptw-post-avatar img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ptw-post-author-details strong {
    display: block;
    font-size: 0.95rem;
    color: #0F172A;
}

.ptw-post-author-details span {
    display: block;
    font-size: 0.85rem;
    color: var(--ptw-text-muted);
}

.ptw-post-action-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ptw-post-btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--ptw-border-color);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ptw-text-main);
    cursor: pointer;
    transition: all 0.2s;
}

.ptw-post-btn-action:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.ptw-post-btn-icon {
    border: none;
    padding: 8px;
    color: #94A3B8;
}

.ptw-post-btn-icon:hover {
    color: #0077B5; /* LinkedIn blue */
}

/* Hero Image */
.ptw-post-hero {
    margin-bottom: 48px;
    
}

.ptw-post-hero img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 21/9;
    background-color: #e5e7eb;
    box-shadow: 0px 20px 25px -5px #0000001A;
}

.ptw-post-hero figcaption {
    margin-top: 30px;
    font-size: 0.875rem;
    color: #94A3B8;
    font-style: italic;
}

/* Layout Grid */
.ptw-post-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 64px;
    align-items: start;
}

/* Main Content Typography & Spacing */
.ptw-post-main {
    font-size: 1.05rem;
}

.ptw-post-main p {
    margin-bottom: 24px;
    color: #334155;
}

.ptw-post-main h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 40px 0 20px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Sidebar */
.ptw-post-sidebar {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* TOC */
.ptw-post-toc {
    margin-bottom: 16px;
}

.ptw-post-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ptw-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ptw-post-toc ul {
    list-style: none;
}

.ptw-post-toc li {
    margin-bottom: 12px;
}

.ptw-post-toc a {
    text-decoration: none;
    color: var(--ptw-text-muted);
    font-size: 0.9rem;
    padding-left: 16px;
    display: block;
    transition: color 0.2s;
    position: relative;
    border-left: 2px solid var(--ptw-border-color);
}

.ptw-post-toc a:hover {
    color: var(--ptw-accent-text);
}

.ptw-post-toc a.active {
    color: var(--ptw-accent-text);
    font-weight: 500;
}

.ptw-post-toc a.active::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--ptw-accent-text);
}

/* Sidebar Cards */
.ptw-post-card-dark {
    background-color: var(--ptw-dark-bg);
    color: white;
    padding: 24px;
    border-radius: 12px;
}

.ptw-post-card-dark h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: #FFFFFF;
}

.ptw-post-card-dark p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.ptw-post-card-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ptw-post-card-link:hover {
    color: #93c5fd;
}

.ptw-post-card-light {
    background-color: #F8FAFC;
    border: 1px solid var(--ptw-border-color);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ptw-post-card-light h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 600;
}

.ptw-post-card-light p {
    font-size: 0.85rem;
    color: var(--ptw-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.ptw-post-newsletter {
    display: flex;
    gap: 8px;
}

.ptw-post-newsletter input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #9CA3AF;
    border-radius: 6px;
    font-size: 0.875rem;
    outline: none;
    width: 100%;
}

.ptw-post-newsletter input:focus {
    border-color: var(--ptw-accent-btn);
}

.ptw-post-btn-dark {
    background-color: var(--ptw-dark-bg);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

/* Jetpack Newsletter Form Styling - Match Custom Design */
#ptw-post-newsletter-signup .jetpack_subscription_widget {
    margin: 0;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget h2.widgettitle {
    font-size: 1.15rem !important;
    margin-bottom: 12px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    text-transform: none !important;
    text-align: left !important;
    letter-spacing: normal !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none;
    font-family: "Sora", sans-serif !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget #subscribe-text p {
    font-size: 0.9rem !important;
    color: #64748B !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget form {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: stretch !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget form > div#subscribe-text {
    width: 100% !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget #subscribe-email {
    flex: 1 !important;
    margin: 0 !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget #subscribe-submit {
    margin: 0 !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget input[type="email"] {
    padding: 10px 14px !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    outline: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: 100% !important;
    background-color: #ffffff !important;
    color: #334155 !important;
    min-height: 44px !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget input[type="email"]::placeholder {
    color: #94A3B8 !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget input[type="email"]:focus {
    border-color: #3B82F6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget button[type="submit"],
#ptw-post-newsletter-signup .jetpack_subscription_widget .wp-block-button__link {
    background-color: #0F172A !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    height: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    transition: all 0.2s ease !important;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget button[type="submit"]:hover,
#ptw-post-newsletter-signup .jetpack_subscription_widget .wp-block-button__link:hover {
    background-color: #1E293B !important;
    transform: translateY(-1px) !important;
}

/* Success/Error Messages */
#ptw-post-newsletter-signup .jetpack_subscription_widget .success,
#ptw-post-newsletter-signup .jetpack_subscription_widget .error {
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget .success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

#ptw-post-newsletter-signup .jetpack_subscription_widget .error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Hide Jetpack branding if present */
#ptw-post-newsletter-signup .jetpack_subscription_widget .wp-block-jetpack-subscriptions__show-subs {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ptw-post-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ptw-post-sidebar {
        position: relative;
        top: 0;
    }

    .ptw-post-wrapper h1 {
        font-size: 2.25rem;
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .ptw-post-wrapper h1 {
        font-size: 1.875rem;
    }
}

/* Related Solution Explore OQSHA Solutions */
:root {
    /* Theme Variables */
    --brand-bg: #0F1423;
    --brand-blue: #2563EB;
    --brand-blue-hover: #2563EB;
    --brand-card-bg: #1E293B;
    --brand-card-border: #2E3A54;
    --brand-skeleton: #2A364F;
    --brand-badge-orange: #F59E0B;
    --text-main: #ffffff;
    --text-muted: #D1D5DB;
}


/* --- Layout & Typography --- */
#oqsha-blog-related-section {
    width: 100%;
    background-color: #0F172A;
}

#oqsha-blog-related-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

#oqsha-blog-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

#oqsha-blog-text-col {
    width: 100%;
    max-width: 42rem;
}

#oqsha-blog-subhead {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

#oqsha-blog-mainhead {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #60A5FA;
    margin: 0 0 2rem 0;
}

/* --- Feature List --- */
#oqsha-blog-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.oqsha-blog-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.oqsha-blog-bullet {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #3B82F6;
    margin-top: 0.625rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.oqsha-blog-list-text {
    line-height: 1.625;
    color: rgba(209, 213, 219, 0.9);
    transition: color 0.3s ease;
    cursor: default;
}

.oqsha-blog-list-text:hover {
    color: var(--text-main);
}

/* --- Buttons --- */
#oqsha-blog-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.oqsha-blog-btn {
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    text-decoration: none;
    display: inline-block;
}

#oqsha-blog-btn-primary {
    background-color: var(--brand-blue);
    color: #fff;
    border: none;
}

#oqsha-blog-btn-primary:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px -6px rgba(59, 118, 246, 0.6);
}

#oqsha-blog-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #4B5563;
}

#oqsha-blog-btn-secondary:hover {
    border-color: #9CA3AF;
    background-color: rgba(31, 41, 55, 0.5);
    transform: translateY(-4px);
}

/* --- Right Column: Media Mockup --- */
#oqsha-blog-media-col {
    position: relative;
    width: 100%;
    max-width: 36rem;
    margin: 0 auto;
    padding-top: 2rem;
}

#oqsha-blog-glow {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(59, 118, 246, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    animation: oqsha-blog-pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.oqsha-blog-card-container {
    perspective: 1200px;
}

#oqsha-blog-3d-wrapper {
    position: relative;
    width: 100%;
    z-index: 10;
    transform-style: preserve-3d;
    transform: rotateX(5deg) rotateY(-10deg);
    animation: oqsha-blog-tilt-wobble 8s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#oqsha-blog-3d-wrapper:hover {
    animation-play-state: paused;
    transform: rotateX(0deg) rotateY(0deg);
}

/* Main Mockup Card */
#oqsha-blog-mockup-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--brand-card-bg);
    border: 1px solid var(--brand-card-border);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

/* Card Top Bar */
.oqsha-blog-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--brand-card-border);
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.oqsha-blog-active-badge {
    padding: 0.125rem 0.5rem;
    background-color: #3B82F633;
    color: #60A5FA;
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: oqsha-blog-pulse-slow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Inner Lines List */
.oqsha-blog-inner-lines {
    margin-bottom: 2rem;
    width: 100%;
}

.oqsha-blog-line-spacing {
    margin-bottom: 1rem;
}
.oqsha-blog-line-spacing:last-child {
    margin-bottom: 0;
}

/* Nested Modules Grid */
.oqsha-blog-nested-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.oqsha-blog-nested-card {
    height: 5rem;
    background-color: #0F172A;
    border: 1px solid rgba(46, 58, 84, 0.6);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.oqsha-blog-nested-card:hover {
    background-color: #1A2335;
}

/* Shimmer Base Lines */
.oqsha-blog-shimmer {
    height: 0.75rem;
    border-radius: 9999px;
    background: var(--brand-skeleton);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    background-repeat: no-repeat;
    background-size: 800px 100%;
    animation: oqsha-blog-shimmer-slide 2.5s infinite linear;
    transition: opacity 0.3s ease;
}

.oqsha-blog-shimmer.thin { height: 0.5rem; }
.oqsha-blog-shimmer.op-70 { opacity: 0.7; }
.oqsha-blog-shimmer.op-50 { opacity: 0.5; }
.oqsha-blog-shimmer.op-80 { opacity: 0.8; }

.oqsha-blog-nested-card:hover .oqsha-blog-shimmer.op-80 { opacity: 1; }
.oqsha-blog-nested-card:hover .oqsha-blog-shimmer.op-50 { opacity: 0.7; }

/* Floating Badge */
#oqsha-blog-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -0.5rem;
    background-color: var(--brand-badge-orange);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.5);
    border: 1px solid rgba(253, 224, 71, 0.3);
    backdrop-filter: blur(12px);
    transition: transform 0.5s ease;
    transform: translateZ(40px);
    z-index: 20;
}

#oqsha-blog-badge-title {
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

#oqsha-blog-badge-text {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    font-size: 0.625rem;
}

/* --- Sizing Utilities --- */
.w-32 { width: 8rem; }
.w-full { width: 100%; }
.w-4-5 { width: 80%; }
.w-1-2 { width: 50%; }
.w-2-3 { width: 66.666667%; }
.w-11-12 { width: 91.666667%; }

/* --- Animations --- */
.oqsha-blog-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: oqsha-blog-fadeInUp 0.8s ease-out forwards;
}

@keyframes oqsha-blog-fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.oqsha-blog-line-reveal-wrapper {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: oqsha-blog-revealLine 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes oqsha-blog-revealLine {
    to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes oqsha-blog-shimmer-slide {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

@keyframes oqsha-blog-pulse-slow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes oqsha-blog-tilt-wobble {
    0%, 100% { transform: rotateX(5deg) rotateY(-10deg); }
    50% { transform: rotateX(-5deg) rotateY(10deg); }
}

/* --- Animation Delays --- */
.oqsha-blog-delay-100 { animation-delay: 100ms; }
.oqsha-blog-delay-200 { animation-delay: 200ms; }
.oqsha-blog-delay-300 { animation-delay: 300ms; }
.oqsha-blog-delay-400 { animation-delay: 400ms; }
.oqsha-blog-delay-500 { animation-delay: 500ms; }
.oqsha-blog-delay-600 { animation-delay: 600ms; }
.oqsha-blog-delay-700 { animation-delay: 700ms; }

/* --- Responsive Queries --- */
@media (min-width: 640px) {
    #oqsha-blog-badge {
        left: -2rem;
    }
}

@media (min-width: 1024px) {
    #oqsha-blog-related-wrapper {
        padding: 6rem 1.5rem;
    }
    #oqsha-blog-content-wrapper {
        flex-direction: row;
        gap: 2rem;
    }
    #oqsha-blog-text-col,
    #oqsha-blog-media-col {
        width: 50%;
    }
    #oqsha-blog-media-col {
        padding-top: 0;
        margin-left: auto;
        margin-right: 0;
    }
    #oqsha-blog-subhead, 
    #oqsha-blog-mainhead {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    #oqsha-blog-feature-list {
        font-size: 1rem;
    }
    #oqsha-blog-mockup-card {
        padding: 2rem;
    }
}

.oqsha-blog-fade-in-up,
.oqsha-blog-line-reveal-wrapper {
    animation-play-state: paused;
}


/* --- More to Read Section --- */
#oqsha-blog-more-to-read-section {
    background-color: #ffffff;
    color: #111827;
    padding: 4rem 1.5rem;
    width: 100%;
}

.oqsha-blog-mtr-container {
    max-width: 1360px;
    margin: 0 auto;
}

/* Header Area */
.oqsha-blog-mtr-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 1rem;
}

.oqsha-blog-mtr-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
}

.oqsha-blog-mtr-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin: 0;
}

.oqsha-blog-mtr-link {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.oqsha-blog-mtr-link:hover {
    color: var(--brand-blue-hover);
}

/* Grid Layout */
.oqsha-blog-mtr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Card Styles */
.oqsha-blog-mtr-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oqsha-blog-mtr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.oqsha-blog-mtr-card:hover .oqsha-blog-mtr-card-image img {
    transform: scale(1.05);
}

.oqsha-blog-mtr-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.oqsha-blog-mtr-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

/* Category Tags */
.oqsha-blog-mtr-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.oqsha-blog-mtr-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    letter-spacing: 0.05em;
}

.oqsha-blog-mtr-tag.blue { 
    background-color: #EFF6FF; 
    color: #2563EB; 
}
.oqsha-blog-mtr-tag.gray { 
    background-color: #F1F5F9; 
    color: #475569; 
}
.oqsha-blog-mtr-tag.green { 
    background-color: #ECFDF5; 
    color: #059669; 
}
.oqsha-blog-mtr-tag.orange { 
    background-color: #FFF7ED; 
    color: #EA580C; 
}
.oqsha-blog-mtr-tag.purple { 
    background-color: #F5F3FF; 
    color: #7C3AED; 
}
.oqsha-blog-mtr-tag.pink { 
    background-color: #FDF2F8; 
    color: #DB2777; 
}
.oqsha-blog-mtr-tag.yellow { 
    background-color: #FEFCE8; 
    color: #CA8A04; 
}
.oqsha-blog-mtr-tag.teal { 
    background-color: #F0FDFA; 
    color: #0D9488; 
}

/* Card Typography */
.oqsha-blog-mtr-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    color: #111827;
    transition: color 0.2s ease;
}

.oqsha-blog-mtr-card:hover .oqsha-blog-mtr-card-title {
    color: var(--brand-blue);
}

.oqsha-blog-mtr-card-meta {
    font-size: 0.875rem;
    color: #9CA3AF;
    font-style: italic;
}

/* --- Responsive Queries --- */
@media (min-width: 768px) {
    .oqsha-blog-mtr-header {
        flex-direction: row;
        align-items: flex-end;
    }
    .oqsha-blog-mtr-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    #oqsha-blog-more-to-read-section {
        padding: 6rem 1.5rem;
    }
    .oqsha-blog-mtr-grid {
        gap: 3rem;
    }
}

@media (max-width: 490px) {
    #oqsha-blog-mockup-card {
        aspect-ratio: unset;
        height: 22rem;
    }
}