body {
            font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", "Noto Sans JP", sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            overflow-x: hidden;
        }

        /* Parallax Backgrounds */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .hero-bg {
            background-image: var(--takalabot-hero-image);
        }

        .cta-bg {
            background-image: var(--takalabot-cta-image);
        }

        /* Glassmorphism Utilities */
        .glass-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border-color: rgba(13, 148, 136, 0.3);
        }

        .text-gradient {
            background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal-scale.active {
            opacity: 1;
            transform: scale(1);
        }

        /* Premium Blob Animations (Background) */
        @keyframes blobBounce {
            0% {
                transform: translate(0px, 0px) scale(1) rotate(0deg);
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }

            33% {
                transform: translate(80px, -100px) scale(1.1) rotate(120deg);
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            }

            66% {
                transform: translate(-40px, 60px) scale(0.9) rotate(240deg);
                border-radius: 50% 50% 30% 70% / 30% 70% 40% 60%;
            }

            100% {
                transform: translate(0px, 0px) scale(1) rotate(360deg);
                border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            }
        }

        .blob {
            animation: blobBounce 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
            filter: blur(90px);
            position: absolute;
            pointer-events: none;
            z-index: 0;
            opacity: 0.6;
            mix-blend-mode: screen;
        }

        .blob-1 {
            background-color: rgba(45, 212, 191, 0.6);
            width: 50vw;
            height: 50vw;
            top: -10%;
            left: -10%;
            animation-delay: 0s;
            max-width: 600px;
            max-height: 600px;
        }

        .blob-2 {
            background-color: rgba(34, 211, 238, 0.5);
            width: 60vw;
            height: 60vw;
            bottom: -20%;
            right: -10%;
            animation-duration: 25s;
            animation-direction: alternate-reverse;
            max-width: 700px;
            max-height: 700px;
        }

        .blob-3 {
            background-color: rgba(168, 85, 247, 0.4);
            width: 45vw;
            height: 45vw;
            top: 40%;
            left: 30%;
            animation-duration: 30s;
            animation-delay: -5s;
            max-width: 500px;
            max-height: 500px;
        }

        /* Animated Text Gradient */
        .text-animate-gradient {
            background: linear-gradient(to right, #4fd1c5, #63b3ed, #b794f4, #63b3ed, #4fd1c5);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: textGradient 6s linear infinite;
        }

        @keyframes textGradient {
            to {
                background-position: 200% center;
            }
        }

        /* Glass Card Glow */
        .glass-card-glow {
            position: relative;
            z-index: 1;
        }

        .glass-card-glow::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(45deg, #2dd4bf, #22d3ee, #a855f7, #2dd4bf);
            background-size: 200% 200%;
            animation: textGradient 4s linear infinite;
            border-radius: 1.8rem;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
            filter: blur(12px);
        }

        .glass-card-glow:hover::before {
            opacity: 0.9;
        }

        /* Nav Glass Enhancement */
        .nav-glass {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
            transition: all 0.3s ease;
        }

        .nav-glass:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        /* Hero Entrance Staggering */
        .hero-title-entrance {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUpEntrance 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        @keyframes fadeUpEntrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Continuous Animations */
        @keyframes float1 {
            0% {
                transform: translate(0px, 0px) scale(1);
            }

            33% {
                transform: translate(150px, -200px) scale(1.3);
            }

            66% {
                transform: translate(-100px, 150px) scale(0.8);
            }

            100% {
                transform: translate(0px, 0px) scale(1);
            }
        }

        @keyframes float2 {
            0% {
                transform: translate(0px, 0px) scale(1);
            }

            33% {
                transform: translate(-200px, -150px) scale(1.4);
            }

            66% {
                transform: translate(150px, 100px) scale(0.7);
            }

            100% {
                transform: translate(0px, 0px) scale(1);
            }
        }

        @keyframes float3 {
            0% {
                transform: translate(0px, 0px) scale(1);
            }

            33% {
                transform: translate(250px, 200px) scale(1.5);
            }

            66% {
                transform: translate(-150px, -150px) scale(0.6);
            }

            100% {
                transform: translate(0px, 0px) scale(1);
            }
        }

        .animate-float-1 {
            animation: float1 10s ease-in-out infinite alternate;
        }

        .animate-float-2 {
            animation: float2 12s ease-in-out infinite alternate;
        }

        .animate-float-3 {
            animation: float3 15s ease-in-out infinite alternate;
        }

        @keyframes gradient-xy {

            0%,
            100% {
                background-size: 400% 400%;
                background-position: left center;
            }

            50% {
                background-size: 200% 200%;
                background-position: right center;
            }
        }

        .animate-gradient-xy {
            animation: gradient-xy 15s ease infinite;
        }

        /* Shine effect */
        @keyframes shine {
            0% {
                opacity: 0;
                left: -60%;
            }

            30% {
                opacity: 1;
                left: 130%;
            }

            100% {
                opacity: 0;
                left: 130%;
            }
        }

        .btn-shine {
            position: relative;
            overflow: hidden;
        }

        .btn-shine::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            opacity: 0;
            transform: rotate(30deg);
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.4) 30%,
                    rgba(255, 255, 255, 0.8) 50%,
                    rgba(255, 255, 255, 0.4) 70%,
                    rgba(255, 255, 255, 0) 100%);
            animation: shine 3s infinite ease-in-out;
        }

        /* Custom Utilities */
        .section-padding {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }

        .reality-container {
            max-width: 72rem;
        }

        .reality-layout {
            display: grid;
            gap: 2.5rem;
            align-items: start;
        }

        .reality-card {
            height: 100%;
        }

        .reality-visual {
            width: min(100%, 26rem);
            margin: 0 auto;
        }

        .reality-visual img {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            object-position: center;
        }

        @media (min-width: 1024px) {
            .reality-layout {
                grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
                gap: 3.5rem;
            }

            .reality-visual {
                width: 100%;
                margin: 0;
                justify-self: end;
            }
        }

        .audience-switch-desktop {
            display: none;
            align-items: center;
            gap: 0.35rem;
            margin-left: 0;
            padding: 0.2rem;
            border-radius: 9999px;
            background: rgba(255, 255, 255, 0.56);
            border: 1px solid rgba(148, 163, 184, 0.2);
        }

        .header-mobile-audience {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .header-brand-group,
        .header-desktop-nav,
        .header-link-list,
        .header-cta-group {
            min-width: 0;
        }

        .header-brand-group {
            display: flex;
            align-items: center;
            gap: 0.95rem;
            flex-shrink: 0;
            min-width: 17rem;
        }

        .header-desktop-nav {
            display: none;
            align-items: center;
            gap: 1.35rem;
            flex: 1 1 auto;
            min-width: 0;
            flex-wrap: nowrap;
        }

        .header-link-list,
        .header-cta-group {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }

        .header-link-list {
            gap: 1.15rem;
            min-width: 0;
            flex: 1 1 auto;
            justify-content: center;
        }

        .header-cta-group {
            gap: 0.75rem;
            flex-shrink: 0;
            margin-left: auto;
        }

        .header-nav-link,
        .header-cta-button,
        .audience-switch-pill {
            white-space: nowrap;
            line-height: 1;
        }

        .header-nav-link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            flex-shrink: 0;
            color: #475569;
        }

        .header-nav-link.header-nav-action {
            justify-content: center;
            padding: 0.72rem 1rem;
            border-radius: 9999px;
            border: 1px solid rgba(20, 184, 166, 0.24);
            background: rgba(240, 253, 250, 0.96);
            color: #0f766e;
            box-shadow: 0 10px 24px rgba(20, 184, 166, 0.14);
        }

        .header-nav-link.header-nav-action:hover {
            color: #115e59;
            background: rgba(204, 251, 241, 0.98);
            border-color: rgba(13, 148, 136, 0.3);
            transform: translateY(-1px);
        }

        .header-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            flex-shrink: 0;
        }

        .audience-switch-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 2rem;
            padding: 0.5rem 0.9rem;
        }

        .label-compact {
            display: none;
        }

        @media (min-width: 1024px) {
            .audience-switch-desktop {
                display: flex;
            }

            .header-mobile-audience {
                display: none;
            }

            .header-desktop-nav {
                display: flex;
            }
        }

        @media (min-width: 1024px) and (max-width: 1439px) {
            .nav-glass {
                padding-inline: 1.2rem;
                padding-block: 0.85rem;
                gap: 1.15rem;
            }

            .audience-switch-desktop {
                gap: 0.25rem;
            }

            .audience-switch-pill {
                padding: 0.45rem 0.75rem;
                font-size: 0.72rem;
                min-height: 1.85rem;
            }

            .header-desktop-nav {
                gap: 1rem;
            }

            .header-link-list {
                gap: 0.95rem;
                font-size: 0.82rem;
                letter-spacing: 0;
            }

            .header-cta-group {
                gap: 0.75rem;
            }

            .header-cta-button {
                padding: 0.7rem 0.95rem;
                font-size: 0.82rem;
            }

            .header-nav-link.header-nav-action {
                padding: 0.68rem 0.95rem;
            }

            .header-brand-group {
                min-width: 14.5rem;
                gap: 0.75rem;
            }

            .label-full {
                display: none;
            }

            .label-compact {
                display: inline;
            }
        }

        @media (min-width: 1440px) {
            .nav-glass {
                padding-inline: 1.5rem;
                padding-block: 0.75rem;
            }

            .header-brand-group {
                min-width: 18rem;
            }

            .header-link-list {
                gap: 1.35rem;
            }

            .header-cta-group {
                gap: 1rem;
            }

            .header-cta-button {
                padding: 0.75rem 1.25rem;
                font-size: 0.875rem;
            }

            .header-nav-link.header-nav-action {
                padding: 0.75rem 1.1rem;
            }
        }

        /* Typewriter cursor */
        .tw-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: currentColor;
            margin-left: 1px;
            vertical-align: text-bottom;
            animation: tw-blink 0.85s step-end infinite;
        }
        @keyframes tw-blink {
            0%, 100% { opacity: 1; }
            50%       { opacity: 0; }
        }

        /* Navbar scroll state */
        .navbar-scrolled .nav-glass {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

/* WordPress templates */
:root {
    --wp-admin-offset: 0px;
}

.admin-bar {
    --wp-admin-offset: 46px;
}

@media screen and (min-width: 783px) {
    .admin-bar {
        --wp-admin-offset: 32px;
    }
}

.site-floating-nav {
    top: var(--wp-admin-offset);
}

.site-header-link {
    position: relative;
}

.site-header-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #14b8a6, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-header-link:hover::after,
.site-header-link.is-current::after {
    transform: scaleX(1);
}

.blog-shell {
    background: linear-gradient(180deg, #ecfeff 0%, #f8fafc 100%);
    padding-top: calc(8.5rem + var(--wp-admin-offset));
}

@media (min-width: 1024px) {
    .has-floating-header .blog-shell {
        padding-top: calc(9.5rem + var(--wp-admin-offset));
    }
}

.blog-pagination .nav-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.7rem;
    min-height: 2.7rem;
    padding: 0.7rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.86);
    color: #334155;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-pagination .page-numbers:hover {
    transform: translateY(-1px);
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 12px 24px -18px rgba(15, 23, 42, 0.4);
}

.blog-pagination .page-numbers.current {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 30px -18px rgba(13, 148, 136, 0.55);
}

.entry-content {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.9;
}

.entry-content > * + * {
    margin-top: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #0f172a;
    font-weight: 800;
    line-height: 1.3;
}

.entry-content h2 {
    margin-top: 3.25rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.35rem;
    border-left: 6px solid #14b8a6;
    border-radius: 1rem;
    border: 1px solid rgba(20, 184, 166, 0.18);
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 34px -28px rgba(15, 23, 42, 0.35);
    font-size: clamp(1.5rem, 2vw, 1.85rem);
    letter-spacing: 0.01em;
    line-height: 1.45;
}

.entry-content h3 {
    position: relative;
    font-size: 1.35rem;
    margin-top: 2.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.entry-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 3.75rem;
    height: 3px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #14b8a6, #06b6d4);
}

.entry-content h4 {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0.85rem;
    padding-left: 0.9rem;
    border-left: 3px solid rgba(20, 184, 166, 0.4);
}

.entry-content a {
    color: #0f766e;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.entry-content > ul,
.entry-content > ol {
    margin-top: 1.75rem;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 32px -30px rgba(15, 23, 42, 0.32);
}

.entry-content ul,
.entry-content ol {
    padding-left: 0;
}

.entry-content ul {
    list-style: none;
}

.entry-content ol {
    list-style: none;
    counter-reset: takalabot-ordered;
}

.entry-content ul > li,
.entry-content ol > li {
    position: relative;
}

.entry-content ul > li {
    padding-left: 1.75rem;
}

.entry-content ul > li::before {
    content: "";
    position: absolute;
    top: 0.95rem;
    left: 0.3rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
    transform: translateY(-50%);
}

.entry-content ol > li {
    counter-increment: takalabot-ordered;
    min-height: 2rem;
    padding-left: 2.75rem;
}

.entry-content ol > li::before {
    content: counter(takalabot-ordered);
    position: absolute;
    top: 0.2rem;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #0f766e, #06b6d4);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 14px 28px -20px rgba(15, 118, 110, 0.7);
}

.entry-content li + li {
    margin-top: 0.85rem;
}

.entry-content ul.is-style-takalabot-check {
    margin-top: 1.75rem;
}

.entry-content ul.is-style-takalabot-check > li::before {
    content: "✓";
    top: 0.1rem;
    left: 0;
    width: 1.45rem;
    height: 1.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: none;
    transform: none;
}

.entry-content .takalabot-block-eyebrow,
.entry-content .takalabot-step-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.entry-content .takalabot-block-eyebrow {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

.entry-content .takalabot-step-label {
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
}

.entry-content .wp-block-group.is-style-takalabot-note,
.entry-content .wp-block-group.is-style-takalabot-caution,
.entry-content .wp-block-group.is-style-takalabot-step-card {
    margin-top: 1.75rem;
    padding: 1.4rem 1.45rem;
    border-radius: 1.35rem;
}

.entry-content .wp-block-group.is-style-takalabot-note > * + *,
.entry-content .wp-block-group.is-style-takalabot-caution > * + *,
.entry-content .wp-block-group.is-style-takalabot-step-card > * + * {
    margin-top: 0.85rem;
}

.entry-content .wp-block-group.is-style-takalabot-note h3,
.entry-content .wp-block-group.is-style-takalabot-caution h3,
.entry-content .wp-block-group.is-style-takalabot-step-card h3 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1.2rem;
    line-height: 1.35;
}

.entry-content .wp-block-group.is-style-takalabot-note h3::after,
.entry-content .wp-block-group.is-style-takalabot-caution h3::after,
.entry-content .wp-block-group.is-style-takalabot-step-card h3::after {
    display: none;
}

.entry-content .wp-block-group.is-style-takalabot-note {
    border: 1px solid rgba(20, 184, 166, 0.18);
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 32px -30px rgba(15, 23, 42, 0.28);
}

.entry-content .wp-block-group.is-style-takalabot-caution {
    border: 1px solid rgba(245, 158, 11, 0.24);
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 32px -30px rgba(120, 53, 15, 0.22);
}

.entry-content .wp-block-group.is-style-takalabot-caution .takalabot-block-eyebrow {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.entry-content .wp-block-group.is-style-takalabot-step-card {
    height: 100%;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #ffffff;
    box-shadow: 0 18px 32px -30px rgba(15, 23, 42, 0.28);
}

.entry-content .takalabot-faq-stack {
    display: grid;
    gap: 1rem;
    margin-top: 1.75rem;
}

.entry-content .wp-block-details.is-style-takalabot-faq {
    margin-top: 0;
    padding: 1rem 1.2rem 1.15rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 32px -30px rgba(15, 23, 42, 0.28);
}

.entry-content .wp-block-details.is-style-takalabot-faq summary {
    position: relative;
    padding-right: 2.5rem;
    color: #0f172a;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.entry-content .wp-block-details.is-style-takalabot-faq summary::-webkit-details-marker {
    display: none;
}

.entry-content .wp-block-details.is-style-takalabot-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 9999px;
    background: rgba(20, 184, 166, 0.1);
    color: #0f766e;
    font-size: 1.1rem;
    font-weight: 900;
    transform: translateY(-50%);
}

.entry-content .wp-block-details.is-style-takalabot-faq[open] summary::after {
    content: "−";
}

.entry-content .wp-block-details.is-style-takalabot-faq > :not(summary) {
    margin-top: 0.95rem;
}

.entry-content li > ul,
.entry-content li > ol {
    margin-top: 0.85rem;
    margin-left: 0.2rem;
    padding-top: 0.1rem;
}

.entry-content li > ul::before,
.entry-content li > ol::before {
    display: none;
}

.entry-content ul ul > li::before {
    left: 0.35rem;
    width: 0.45rem;
    height: 0.45rem;
    background: #94a3b8;
    box-shadow: none;
}

.entry-content ol ol > li::before {
    background: #ffffff;
    color: #0f766e;
    border: 1px solid rgba(20, 184, 166, 0.24);
    box-shadow: none;
}

.entry-content blockquote {
    border-left: 4px solid #14b8a6;
    background: #f0fdfa;
    padding: 1.2rem 1.4rem;
    border-radius: 0 1rem 1rem 0;
}

.entry-content img {
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px -25px rgba(15, 23, 42, 0.35);
}

.entry-content table {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    border-collapse: collapse;
}

.entry-content th,
.entry-content td {
    border: 1px solid #cbd5e1;
    padding: 0.85rem 1rem;
}

.entry-content th {
    background: #e2e8f0;
    color: #0f172a;
}

.post-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
