/* ============================================
   desca.dev - Surreal Developer Dream Journal
   ============================================ */

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

:root {
    --void-indigo: #0B0D1A;
    --twilight-cobalt: #151832;
    --drowsy-sapphire: #1E2350;
    --dream-violet: #7B6CF6;
    --lucid-mint: #4EEBC0;
    --waking-rose: #F76E8A;
    --lavender-gray: #D4D0E8;
    --muted-orchid: #8A86A8;
    --teal-aurora: #3DDBD9;
    --amber-drift: #FFB86C;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--void-indigo);
    color: var(--lavender-gray);
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.72;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Code-Rain Sidebar --- */
.code-rain {
    position: fixed;
    left: 0;
    top: 0;
    width: 60px;
    height: 100vh;
    z-index: 100;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.08;
    transition: opacity 0.8s ease;
}

.code-rain.intensified {
    opacity: 0.15;
}

.code-rain-inner {
    font-family: 'Victor Mono', monospace;
    font-size: 7px;
    line-height: 1.3;
    color: var(--dream-violet);
    white-space: pre;
    animation: code-scroll 30s linear infinite;
    will-change: transform;
}

@keyframes code-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.code-rain.fast .code-rain-inner {
    animation-duration: 15s;
}

/* --- Floating Navigation Orb --- */
.nav-orb {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 200;
    cursor: pointer;
}

.nav-orb-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--dream-violet);
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.8s ease;
    box-shadow: 0 0 15px rgba(123, 108, 246, 0.3);
}

.nav-orb:hover .nav-orb-dot {
    opacity: 0.9;
    transform: scale(1.2);
}

.nav-menu {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 180px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(30, 35, 80, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transform-origin: top right;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-orb:hover .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.nav-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    color: var(--lavender-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    font-variation-settings: 'wght' 500;
}

.nav-link:hover {
    color: var(--lucid-mint);
}

/* --- Aurora Container (Global) --- */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* --- Aurora Bands --- */
.aurora-band {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform, opacity;
}

.aurora-violet {
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(123, 108, 246, 0.35) 0%, transparent 70%);
    animation: aurora-drift-1 20s ease-in-out infinite;
}

.aurora-mint {
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse, rgba(78, 235, 192, 0.3) 0%, transparent 70%);
    animation: aurora-drift-2 18s ease-in-out infinite;
}

.aurora-rose {
    width: 450px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(247, 110, 138, 0.25) 0%, transparent 70%);
    animation: aurora-drift-3 22s ease-in-out infinite;
}

@keyframes aurora-drift-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(60px, -40px) rotate(5deg); opacity: 1; }
    50% { transform: translate(-30px, 30px) rotate(-3deg); opacity: 0.6; }
    75% { transform: translate(40px, 20px) rotate(2deg); opacity: 0.9; }
}

@keyframes aurora-drift-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    33% { transform: translate(-50px, 30px) rotate(-4deg); opacity: 1; }
    66% { transform: translate(40px, -20px) rotate(3deg); opacity: 0.5; }
}

@keyframes aurora-drift-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    20% { transform: translate(30px, 40px) rotate(3deg); opacity: 0.9; }
    40% { transform: translate(-40px, -10px) rotate(-5deg); opacity: 0.7; }
    60% { transform: translate(20px, -30px) rotate(2deg); opacity: 1; }
    80% { transform: translate(-20px, 20px) rotate(-2deg); opacity: 0.5; }
}

/* --- Global Aurora Bands positioning --- */
.aurora-container .aurora-violet {
    top: 20%;
    left: 30%;
}

.aurora-container .aurora-mint {
    top: 40%;
    left: 50%;
}

.aurora-container .aurora-rose {
    top: 60%;
    left: 20%;
}

/* --- Layers (Sections) --- */
.layer {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    z-index: 10;
}

.layer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.layer-aurora {
    position: absolute;
}

/* --- Interstitial Fog --- */
.layer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at 50% 0%, rgba(30, 35, 80, 0.25) 0%, transparent 70%);
    mix-blend-mode: screen;
    z-index: 1;
    pointer-events: none;
}

/* --- Layer 0: The Surface --- */
.layer-surface {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: var(--void-indigo);
    background-image:
        radial-gradient(ellipse at 30% 20%, var(--drowsy-sapphire) 0%, var(--void-indigo) 70%),
        radial-gradient(ellipse at 80% 70%, rgba(123, 108, 246, 0.08) 0%, transparent 50%);
}

.layer-surface .layer-bg .aurora-violet {
    top: 30%;
    left: 35%;
    opacity: 0;
    animation: surface-aurora-fade-1 2s ease forwards 0.3s, aurora-drift-1 20s ease-in-out infinite 2.3s;
}

.layer-surface .layer-bg .aurora-mint {
    top: 35%;
    left: 45%;
    opacity: 0;
    animation: surface-aurora-fade-2 2s ease forwards 0.7s, aurora-drift-2 18s ease-in-out infinite 2.7s;
}

.layer-surface .layer-bg .aurora-rose {
    top: 40%;
    left: 30%;
    opacity: 0;
    animation: surface-aurora-fade-3 2s ease forwards 1.1s, aurora-drift-3 22s ease-in-out infinite 3.1s;
}

@keyframes surface-aurora-fade-1 {
    from { opacity: 0; }
    to { opacity: 0.8; }
}

@keyframes surface-aurora-fade-2 {
    from { opacity: 0; }
    to { opacity: 0.7; }
}

@keyframes surface-aurora-fade-3 {
    from { opacity: 0; }
    to { opacity: 0.6; }
}

.surface-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.site-title {
    font-family: 'Syne', sans-serif;
    font-variation-settings: 'wght' 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: -0.02em;
    color: var(--lavender-gray);
    opacity: 0;
    animation: title-appear 0.5s ease forwards 2.5s;
}

@keyframes title-appear {
    to { opacity: 1; }
}

.title-text {
    display: inline;
}

.title-cursor {
    font-family: 'Victor Mono', monospace;
    font-weight: 400;
    color: var(--dream-violet);
    animation: cursor-blink 0.8s step-end infinite;
    opacity: 0;
}

.title-cursor.visible {
    opacity: 1;
}

.title-cursor.hidden {
    opacity: 0;
    animation: none;
}

@keyframes cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.site-tagline {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: var(--muted-orchid);
    max-width: 32em;
    opacity: 0;
    animation: tagline-fade 1.5s ease forwards 4.5s;
}

@keyframes tagline-fade {
    to { opacity: 1; }
}

.scroll-chevron {
    margin-top: 40px;
    opacity: 0;
    animation: chevron-appear 1s ease forwards 5.5s;
}

.scroll-chevron svg {
    animation: pulse-attention 2s ease-in-out infinite;
}

@keyframes chevron-appear {
    to { opacity: 0.6; }
}

@keyframes pulse-attention {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* --- Layer 1: The Concept --- */
.layer-concept {
    min-height: 100vh;
    padding: 15vh 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        radial-gradient(ellipse at 30% 20%, var(--drowsy-sapphire) 0%, var(--void-indigo) 70%),
        radial-gradient(ellipse at 70% 60%, rgba(78, 235, 192, 0.06) 0%, transparent 50%);
}

.layer-concept .layer-bg .aurora-violet {
    top: 20%;
    left: 20%;
}

.layer-concept .layer-bg .aurora-mint {
    top: 50%;
    left: 55%;
}

/* --- Content Blobs --- */
.content-blob {
    position: relative;
    max-width: 560px;
    padding: 0;
    z-index: 5;
}

.blob-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    z-index: 0;
    pointer-events: none;
}

.blob-content {
    position: relative;
    z-index: 2;
    padding: 48px 40px;
    background: rgba(21, 24, 50, 0.4);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-heading {
    font-family: 'Syne', sans-serif;
    font-variation-settings: 'wght' 700;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    color: var(--lavender-gray);
    margin-bottom: 24px;
    transition: font-variation-settings 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading:hover {
    font-variation-settings: 'wght' 400;
}

.blob-content p {
    color: var(--lavender-gray);
    margin-bottom: 16px;
    max-width: 38em;
}

.blob-content p:last-child {
    margin-bottom: 0;
}

.text-mint {
    color: var(--lucid-mint);
}

.text-amber {
    color: var(--amber-drift);
}

/* --- Code Fragments --- */
.code-fragment {
    position: absolute;
    font-family: 'Victor Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dream-violet);
    opacity: 0.15;
    z-index: 2;
    pointer-events: none;
    white-space: pre;
}

.code-fragment .code-line {
    display: block;
}

.code-fragment span span {
    display: inline-block;
    transition: opacity 0.4s ease;
}

.code-fragment.dissolving span span {
    opacity: 0;
}

.code-fragment-1 {
    top: 15%;
    right: 8%;
    transform: rotate(8deg);
}

.code-fragment-2 {
    top: 8%;
    left: 5%;
    transform: rotate(-6deg);
}

.code-fragment-3 {
    top: 10%;
    right: 12%;
    transform: rotate(5deg);
}

/* --- Blob offset and rotation --- */
.blob-1 {
    transform: translateX(4vw) rotate(0.8deg);
}

/* --- Layer 2: The Work --- */
.layer-work {
    min-height: 250vh;
    padding: 15vh 8vw 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12vh;
    background-image:
        radial-gradient(ellipse at 60% 20%, var(--drowsy-sapphire) 0%, var(--void-indigo) 70%),
        radial-gradient(ellipse at 20% 60%, rgba(247, 110, 138, 0.05) 0%, transparent 50%);
}

.layer-work .layer-bg .aurora-mint {
    top: 15%;
    left: 60%;
}

.layer-work .layer-bg .aurora-rose {
    top: 45%;
    left: 10%;
}

.layer-work .layer-bg .aurora-violet {
    top: 70%;
    left: 40%;
}

/* --- Project Blobs --- */
.blob-project {
    max-width: 580px;
    width: 100%;
}

.blob-project-1 {
    align-self: flex-start;
    transform: translateX(-3vw) rotate(-0.8deg);
    margin-left: 8vw;
}

.blob-project-2 {
    align-self: flex-end;
    transform: translateX(5vw) rotate(1.2deg);
    margin-right: 5vw;
}

.blob-project-3 {
    align-self: flex-start;
    transform: translateX(-5vw) rotate(-0.5deg);
    margin-left: 12vw;
}

.project-title {
    font-family: 'Syne', sans-serif;
    font-variation-settings: 'wght' 600;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    color: var(--lavender-gray);
    margin-bottom: 16px;
    transition: font-variation-settings 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-title:hover {
    font-variation-settings: 'wght' 400;
}

.project-desc {
    color: var(--lavender-gray);
    margin-bottom: 20px;
    max-width: 38em;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: 'Victor Mono', monospace;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--muted-orchid);
    padding: 4px 12px;
    border: 1px solid rgba(138, 134, 168, 0.2);
    border-radius: 20px;
}

/* --- Project Generative Backgrounds --- */
.project-generative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 30px;
    overflow: hidden;
    pointer-events: none;
}

/* Concentric circles pattern */
.project-gen-circles::before,
.project-gen-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(123, 108, 246, 0.12);
    top: 50%;
    left: 50%;
    animation: pulse-circle 4s ease-in-out infinite;
}

.project-gen-circles::before {
    width: 200px;
    height: 200px;
    margin: -100px 0 0 -100px;
    animation-delay: 0s;
}

.project-gen-circles::after {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-delay: 1s;
}

@keyframes pulse-circle {
    0%, 100% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.08; }
}

/* Gradient mesh pattern */
.project-gen-gradient {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(78, 235, 192, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(247, 110, 138, 0.06) 0%, transparent 50%);
    animation: gradient-morph 12s ease-in-out infinite;
}

@keyframes gradient-morph {
    0%, 100% {
        background:
            radial-gradient(ellipse at 30% 40%, rgba(78, 235, 192, 0.08) 0%, transparent 60%),
            radial-gradient(ellipse at 70% 60%, rgba(247, 110, 138, 0.06) 0%, transparent 50%);
    }
    50% {
        background:
            radial-gradient(ellipse at 60% 30%, rgba(78, 235, 192, 0.06) 0%, transparent 60%),
            radial-gradient(ellipse at 40% 70%, rgba(247, 110, 138, 0.1) 0%, transparent 50%);
    }
}

/* Portal pattern */
.project-gen-portal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gen-portal::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(247, 110, 138, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(45deg);
    animation: mini-portal-spin 15s linear infinite;
}

@keyframes mini-portal-spin {
    to { transform: translate(-50%, -50%) rotateX(45deg) rotate(360deg); }
}

/* --- Portal Dividers --- */
.portal-divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vh 0;
    z-index: 5;
    position: relative;
}

.portal {
    position: relative;
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    perspective: 600px;
}

.portal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(123, 108, 246, 0.25);
    transform: translate(-50%, -50%) rotateX(60deg) rotate(calc(var(--ring-index) * 3deg));
    --size: calc(100% - var(--ring-index) * 10%);
    width: var(--size);
    height: var(--size);
    opacity: calc(1 - var(--ring-index) * 0.08);
    animation: portal-spin 20s linear infinite;
    animation-delay: calc(var(--ring-index) * -0.5s);
}

@keyframes portal-spin {
    to { transform: translate(-50%, -50%) rotateX(60deg) rotate(calc(360deg + var(--ring-index) * 3deg)); }
}

/* --- Layer 3: The Process --- */
.layer-process {
    min-height: 100vh;
    padding: 15vh 10vw 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8vh;
    background-image:
        radial-gradient(ellipse at 50% 30%, var(--drowsy-sapphire) 0%, var(--void-indigo) 70%),
        radial-gradient(ellipse at 50% 70%, rgba(123, 108, 246, 0.06) 0%, transparent 50%);
}

.layer-process .layer-bg .aurora-corridor-left {
    top: 20%;
    left: -15%;
    width: 400px;
    height: 600px;
}

.layer-process .layer-bg .aurora-corridor-right {
    top: 30%;
    right: -15%;
    left: auto;
    width: 400px;
    height: 500px;
}

.process-column {
    position: relative;
    z-index: 5;
    max-width: 32em;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.process-text {
    color: var(--lavender-gray);
}

.process-pullquote {
    font-family: 'Syne', sans-serif;
    font-variation-settings: 'wght' 600;
    font-size: 1.4em;
    color: var(--dream-violet);
    line-height: 1.3;
    display: inline;
}

/* --- Layer 4: The Contact --- */
.layer-contact {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10vh 8vw;
    background-image:
        radial-gradient(ellipse at 50% 50%, var(--drowsy-sapphire) 0%, var(--void-indigo) 70%);
}

.layer-contact .layer-bg .aurora-converge {
    top: 30%;
    left: 30%;
}

.layer-contact .layer-bg .aurora-converge:nth-child(2) {
    top: 35%;
    left: 40%;
}

.layer-contact .layer-bg .aurora-converge:nth-child(3) {
    top: 32%;
    left: 35%;
}

.contact-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.contact-pool {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(123, 108, 246, 0.15) 0%,
        rgba(78, 235, 192, 0.1) 40%,
        rgba(247, 110, 138, 0.08) 70%,
        transparent 100%
    );
    filter: blur(40px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pool-breathe 8s ease-in-out infinite;
}

@keyframes pool-breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.contact-email {
    font-family: 'Victor Mono', monospace;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--lavender-gray);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lucid-mint);
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-email:hover::after {
    width: 100%;
}

.contact-email:hover {
    color: var(--lucid-mint);
}

.contact-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lucid-mint);
    transition: box-shadow 0.4s ease, transform 0.3s ease;
    text-decoration: none;
}

.contact-circle:hover {
    box-shadow: 0 0 20px rgba(78, 235, 192, 0.4);
}

.contact-circle svg {
    width: 20px;
    height: 20px;
}

.fade-title {
    font-family: 'Syne', sans-serif;
    font-variation-settings: 'wght' 400;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--muted-orchid);
    margin-top: 40px;
    letter-spacing: -0.02em;
}

.fade-subtitle {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 0.9rem;
    color: var(--muted-orchid);
    opacity: 0.6;
}

/* --- Reveal Animations --- */
.reveal-element {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-element[data-reveal="up"] {
    transform: translateY(20px);
}

.reveal-element[data-reveal="left"] {
    transform: translateX(-30px) rotate(2deg);
}

.reveal-element[data-reveal="right"] {
    transform: translateX(30px) rotate(-2deg);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0deg);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .code-rain {
        display: none;
    }

    .nav-orb {
        top: 20px;
        right: 20px;
    }

    .layer-concept,
    .layer-process {
        padding: 10vh 6vw;
    }

    .layer-work {
        padding: 10vh 5vw 15vh;
    }

    .blob-project-1,
    .blob-project-2,
    .blob-project-3 {
        align-self: center;
        margin-left: 0;
        margin-right: 0;
        transform: none;
    }

    .blob-content {
        padding: 32px 24px;
    }

    .process-column {
        max-width: 90vw;
    }

    .portal {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 1.8rem;
    }

    .project-title {
        font-size: 1.4rem;
    }

    .blob-content {
        padding: 24px 20px;
    }
}
