/* ================================
   meriem mehri / personal site
   minimal · composed · alive
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --text-muted: #555;
    --text-light: #888;
    --accent: #c45c3e;
    --accent-hover: #a84832;
    --border: #e5e5e5;
    --card-bg: #fff;
    --nav-bg: rgba(255, 255, 255, 0.85);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --max-width: 780px;
    --spacing: 2rem;
}

[data-theme="dark"] {
    --bg: #0a0a0a;
    --text: #f5f5f0;
    --text-muted: #c5c5c0;
    --text-light: #8a8a85;
    --accent: #e07050;
    --accent-hover: #ff8a6a;
    --border: #252525;
    --card-bg: #141414;
    --nav-bg: rgba(10, 10, 10, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Construction notice */
.construction-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    z-index: 200;
}

.construction-notice p {
    margin: 0;
}

/* Floating background */
.floating-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.floating-fragment {
    position: absolute;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.7rem;
    color: var(--text);
    opacity: 0.04;
    white-space: nowrap;
    user-select: none;
    animation: float-drift linear infinite;
}

.floating-fragment.quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.8rem;
}

.floating-fragment.number {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

@keyframes float-drift {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift-x, 20px)) rotate(var(--drift-rotate, 5deg));
    }
}

/* Gradient accent - subtle top corner */
.gradient-accent {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(196, 92, 62, 0.06) 0%,
        rgba(196, 92, 62, 0.02) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: -1;
}

/* ================================
   Typography
   ================================ */

h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-transform: lowercase;
}

h3 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: var(--text);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

/* ================================
   Navigation
   ================================ */

nav {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3rem;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
}

.nav-name:hover {
    color: var(--accent);
}

.nav-about {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-about:hover,
.nav-about.active {
    color: var(--text);
    border-color: var(--text-light);
}

.nav-cv {
    font-size: 0.75rem;
    color: var(--accent);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-cv:hover {
    background: var(--accent);
    color: #fff;
}

/* ================================
   Story Page
   ================================ */

.about-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10rem var(--spacing) 4rem;
}

.about-hero h1 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
}

.about-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem var(--spacing);
}

.about-section h2 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-section > p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.passions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.passion-item h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    letter-spacing: 0;
}

.passion-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.lately-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lately-item {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.lately-label {
    color: var(--text-light);
    min-width: 80px;
}

.lately-value {
    color: var(--text-muted);
}

.beliefs-list {
    list-style: none;
}

.beliefs-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.beliefs-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.about-back {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.back-link {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 7rem;
    }

    .about-hero h1 {
        font-size: 1.5rem;
    }

    .passions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lately-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.nav-links a {
    color: var(--text-muted);
    padding: 0.25rem 0.6rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.sep {
    color: var(--border);
    font-size: 0.75rem;
    user-select: none;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-muted);
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.theme-toggle:hover {
    color: var(--accent);
}

.icon-moon {
    display: none;
}

[data-theme="dark"] .icon-sun {
    display: none;
}

[data-theme="dark"] .icon-moon {
    display: inline;
}

/* ================================
   Sections
   ================================ */

section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem var(--spacing);
}

/* ================================
   Hero
   ================================ */

#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
}

.hero-photo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-photo {
    width: 500px;
    height: auto;
    opacity: 0.04;
    filter: grayscale(100%);
    transition: all 0.8s ease;
}

#hero:hover .hero-photo {
    opacity: 0.12;
    filter: grayscale(0%) sepia(20%) saturate(1.2);
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 480px;
    flex-shrink: 0;
}

.hero-visual {
    flex-shrink: 0;
}

.sphere-img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-intro {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    font-weight: 400;
    min-height: 1.5em;
}

.typing-text {
    color: var(--text-muted);
    font-weight: 500;
    transition: font-family 0.3s ease;
}

.typing-text.font-0 {
    font-family: var(--font-serif);
    font-style: italic;
}

.typing-text.font-1 {
    font-family: var(--font-sans);
    font-weight: 600;
}

.typing-text.font-2 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.typing-text.font-3 {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 0.1em;
}

.typing-text.font-4 {
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95em;
    letter-spacing: 0.15em;
}

.cursor {
    color: var(--accent);
    animation: blink 1s infinite;
    font-weight: 300;
}

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

/* ================================
   Visual Strip
   ================================ */

.visual-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing) 4rem;
}

.visual-element {
    width: calc(25% - 1rem);
    max-width: 220px;
    height: auto;
    border-radius: 8px;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.visual-element:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* ================================
   Now
   ================================ */

.now-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.now-block {
    margin-bottom: 2.5rem;
}

.thinking-list,
.building-list {
    list-style: none;
}

.thinking-list li,
.building-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.thinking-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.building-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.85rem;
}

.reading {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================
   Work
   ================================ */

.work-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.work-item {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.work-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.work-type {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.6rem;
}

.work-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.work-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.work-past {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.work-past h3 {
    margin-bottom: 0.6rem;
}

.work-past p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.work-past a {
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.work-past a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ================================
   Research
   ================================ */

.research-intro {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.research-areas {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.research-area ul {
    list-style: none;
}

.research-area li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.research-area li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-light);
}

.research-area p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.education {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.edu-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.edu-item {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.edu-year {
    color: var(--text-light);
    min-width: 65px;
    font-variant-numeric: tabular-nums;
}

.edu-detail {
    color: var(--text-muted);
}

/* ================================
   Lab
   ================================ */

.lab-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.lab-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.lab-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    background: var(--card-bg);
    cursor: pointer;
    transition: background 0.2s ease;
}

.lab-item:hover {
    background: var(--bg);
}

.lab-item.coming-soon {
    opacity: 0.45;
    cursor: default;
}

.lab-item.coming-soon:hover {
    background: var(--card-bg);
}

.lab-date {
    font-size: 0.7rem;
    color: var(--text-light);
    font-variant-numeric: tabular-nums;
    text-transform: lowercase;
}

.lab-item h3 {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.4;
}

.lab-tag {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.2rem 0.6rem;
    background: var(--bg);
    border-radius: 2px;
}

.lab-note {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-light);
}

/* ================================
   CV
   ================================ */

.cv-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cv-download {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cv-download:hover {
    background: var(--accent);
    color: #fff;
}

/* ================================
   Tangents
   ================================ */

.tangents-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.tangents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tangent-item {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.tangent-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.tangent-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.tangent-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tangent-link {
    font-size: 0.8rem;
    color: var(--accent);
}

.tangent-link:hover {
    text-decoration: underline;
}

/* ================================
   Connect
   ================================ */

.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.connect-block {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.connect-block:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.connect-block p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.connect-cta {
    font-size: 0.8rem;
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.connect-cta:hover {
    border-bottom-color: var(--accent);
}

.connect-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.connect-links a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.connect-links a:hover {
    color: var(--accent);
}

/* ================================
   Closing
   ================================ */

.closing-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem var(--spacing);
    text-align: center;
}

.closing-photo-container {
    position: relative;
    max-width: 280px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
}

.closing-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) saturate(0.9);
}

.grain-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.25;
    pointer-events: none;
    animation: grainMove 0.4s steps(8) infinite;
}

@keyframes grainMove {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -2%); }
    20% { transform: translate(2%, 2%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-2%, 2%); }
    60% { transform: translate(2%, -2%); }
    70% { transform: translate(-1%, -1%); }
    80% { transform: translate(1%, 1%); }
    90% { transform: translate(-2%, -1%); }
}

.closing-message {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.6;
}

/* ================================
   Footer
   ================================ */

footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem var(--spacing);
    border-top: 1px solid var(--border);
    text-align: center;
}

footer p {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    #hero {
        padding-top: 7rem;
        min-height: auto;
    }

    .hero-layout {
        flex-direction: column-reverse;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .sphere-img {
        width: 180px;
        height: 180px;
    }

    .hero-photo {
        width: 300px;
        opacity: 0.03;
    }

    .hero-intro {
        font-size: 1.35rem;
    }

    .visual-strip {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .visual-element {
        width: 80%;
        max-width: 280px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .connect-grid {
        grid-template-columns: 1fr;
    }

    .tangents-grid {
        grid-template-columns: 1fr;
    }

    .research-areas {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lab-item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding: 1rem 1.25rem;
    }

    .lab-date {
        order: 1;
    }

    .lab-item h3 {
        order: 2;
    }

    .lab-tag {
        order: 3;
        justify-self: start;
        margin-top: 0.25rem;
    }

    .edu-item {
        flex-direction: column;
        gap: 0.15rem;
    }

    .closing-photo-container {
        max-width: 220px;
    }

    .closing-message {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* ================================
   Animations
   ================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#hero .hero-content {
    animation: fadeIn 0.8s ease forwards;
}

/* Selection color */
::selection {
    background: rgba(196, 92, 62, 0.15);
    color: var(--text);
}

/* Scroll reveal for sections */
section:not(#hero) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section:not(#hero).visible {
    opacity: 1;
    transform: translateY(0);
}

/* Link underline animation */
.connect-block a,
.work-past a {
    position: relative;
}

.connect-block a::after,
.work-past a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.connect-block a:hover::after,
.work-past a:hover::after {
    width: 100%;
}
