/* === VARIABLES === */
:root {
    /* Colors */
    --bg: #121212;
    --bg-alt: #1e1e1e;
    --text: #e0e0e0;
    --text-secondary: #b0b0b0;
    --accent: #4db6ac;
    --accent-rgb: 77, 182, 172;
    --subtle: #727578;
    --alert: #ef5350;
    --primary-color: var(--accent);

    /* Typography */
    --terminal-font: monospace;
    --font: "JetBrains Mono", monospace;
    --font-size-s: 0.875rem;
    --font-size-m: 1rem;
    --font-size-l: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 2.5rem;

    /* Spacing - Swiss design system */
    --space-xs: 8px;
    --space-s: 16px;
    --space-m: 24px;
    --space-l: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;

    /* Effects */
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --radius: 6px;
    --transition: 0.2s ease;
}

/* === RESET & BASE === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: 0.3s ease;
    /* Global smooth transitions */
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--bg-alt);
    color: var(--text);
    font-family: var(--font);
    font-size: var(--font-size-m);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

/* === TYPOGRAPHY === */
h1,
h2,
h3 {
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-m);
}

h1 {
    font-size: var(--font-size-xxl);
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-l);
    margin-top: var(--space-xl);
    position: relative;
    transition: color 0.3s ease-in-out;
}

h2::after {
    background-color: var(--accent);
    bottom: -12px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 40px;
}

h3 {
    font-size: var(--font-size-l);
    margin-bottom: var(--space-s);
}

p {
    color: var(--text);
    font-size: var(--font-size-m);
    line-height: 1.7;
    margin-bottom: var(--space-m);
    max-width: 65ch;
    /* Optimal reading width */
}

/* === LAYOUT === */
.container {
    display: grid;
    gap: var(--space-l);
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 900px;
    padding: var(--space-m);
}

section {
    margin-top: var(--space-xl);
    padding-bottom: var(--space-l);
}

/* Center content below terminal */
main .container {
    align-items: center;
    display: flex;
    flex-direction: column;
}

section#about,
section#skills,
section#projects {
    max-width: 800px;
    width: 100%;
}

/* === HEADER & HERO === */
.hero {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
    padding: var(--space-xl) var(--space-m);
    position: relative;
    text-align: center;
}

.hero h1 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-l);
    max-width: 80%;
}

.hero p {
    font-size: var(--font-size-l);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    margin: 0 auto var(--space-xl);
    max-width: 650px;
}

/* === TYPING ANIMATION === */
.typing-container {
    display: inline;
    position: relative;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes blink {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.terminal-cursor {
    background-color: var(--accent);
    bottom: 0;
    display: inline-block;
    height: 1.2em;
    margin-left: 1px;
    position: relative;
    vertical-align: middle;
    width: 0.6em;
}

.cursor-typing {
    animation: none;
    opacity: 1;
}

.cursor-blinking {
    animation: blink 1.2s ease-in-out infinite;
}

.visible-text {
    white-space: normal;
}

/* === TERMINAL === */
.terminal {
    background: #000000;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-family: var(--terminal-font);
    font-size: 14px;
    line-height: 1.4;
    margin: var(--space-m) 0 var(--space-xl);
    max-width: 900px;
    overflow: hidden;
    width: 90%;
}

.terminal-header {
    align-items: center;
    background: #1d1f21;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    display: flex;
    height: 28px;
    padding: 0 12px;
}

.buttons {
    display: flex;
    gap: 8px;
}

.btn-close,
.btn-minimize,
.btn-zoom {
    border-radius: 50%;
    cursor: default;
    height: 12px;
    width: 12px;
}

.btn-close {
    background: #ff5f56;
}

.btn-minimize {
    background: #ffbd2e;
}

.btn-zoom {
    background: #27c93f;
}

.btn-close,
.btn-minimize,
.btn-zoom {
    border: 0.5px solid rgba(0, 0, 0, 0.2);
}

.terminal-body {
    color: #f8f8f2;
    font-family: var(--terminal-font) !important;
    overflow-x: auto;
    padding: 16px;
    text-align: left;
}

.output {
    color: #f8f8f2;
    font-family: var(--terminal-font) !important;
    margin-bottom: 8px;
    min-height: 40px;
    overflow-x: auto;
    text-align: left;
}

.output p,
.output div {
    color: #f8f8f2;
    font-family: var(--terminal-font) !important;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
    text-align: left;
    white-space: pre;
}

.prompt-line {
    align-items: center;
    display: flex;
    font-family: var(--terminal-font) !important;
    margin-top: 8px;
    text-align: left;
}

.prompt {
    color: var(--accent);
    font-family: var(--terminal-font) !important;
    margin-right: 8px;
    user-select: none;
}

.command-input {
    background: transparent;
    border: none;
    color: #f8f8f2;
    font-family: var(--terminal-font) !important;
    font-size: 14px;
    outline: none;
    text-align: left;
    width: 100%;
}

/* Terminal command highlighting */
.terminal a {
    color: var(--accent);
    text-decoration: none;
}

.terminal .error {
    color: #ef5350;
}

.terminal .prompt-symbol {
    color: var(--accent);
}

/* Terminal navigation links */
.nav-link:hover,
.dir:hover {
    color: var(--accent);
    background: transparent;
    /* Remove background highlight */
}

/* === SCROLL ARROW === */
.scroll-arrow {
    position: fixed;
    bottom: var(--space-l);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    cursor: pointer;
    opacity: 0;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.scroll-arrow svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent);
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
    transition: stroke-opacity 0.3s ease;
}

.scroll-arrow:hover svg {
    stroke-opacity: 1;
}

.scroll-arrow.visible {
    opacity: 1;
    animation: subtle-float 3s ease-in-out infinite;
}

.scroll-arrow.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    pointer-events: none;
}

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

/* === ABOUT SECTION === */
#about p {
    color: var(--text);
    font-size: var(--font-size-m);
    line-height: 1.7;
}

/* === MANUAL === */
.manual {
    /* Keep core styling but improve centering */
    margin: 16px auto 0;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    border-radius: 10px;
}

.manual summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    font-weight: 500;
    gap: 10px;
    letter-spacing: 0.02em;
    outline: none;
    padding: 4px 0;
    font-size: large;
}

.manual summary::-webkit-details-marker {
    display: none;
}

.manual summary svg {
    fill: var(--accent);
    height: 20px;
    transition: transform var(--transition);
    width: 20px;
    margin-left: 8px;
}

.manual[open] summary svg {
    transform: rotate(90deg);
}

.manual-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.manual-section {
    margin-bottom: 0;
    padding: 4px 8px;
    margin-left: auto;
    margin-right: auto;
}

.manual-section h3 {
    align-items: center;
    display: flex;
    font-size: 0.95rem;
    font-weight: 500;
    gap: 8px;
    margin-bottom: 8px;
}

.manual-section h3 svg,
.manual summary svg {
    fill: var(--accent);
    stroke: var(--accent);
    height: 18px;
    width: 18px;
}

/* For the modern "Heroicon" style SVGs that use stroke instead of fill */
.manual-section h3 svg[data-slot="icon"] {
    fill: none;
    stroke: var(--accent);
}

/* For SVGs that use classes for styling */
.manual-section h3 svg .st0,
.manual summary svg .st0 {
    fill: var(--accent) !important;
}

.manual-section ul {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 16px;
}

.manual-section li {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 6px;
    position: relative;
}

.manual-section li::before {
    color: var(--accent);
    content: "›";
    font-size: 0.9em;
    left: -12px;
    position: absolute;
}

/* About section with image */
.about-container {
    display: flex;
    flex-direction: row;
    gap: var(--space-l);
    margin-bottom: var(--space-m);
    align-items: flex-start;
}

.about-text {
    flex: 3; /* Giving more space for text */
}

.about-image {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: var(--space-s);
}

.profile-photo {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    filter: grayscale(100%); /* Keeps the black and white style */
    border: 2px solid rgba(var(--accent-rgb), 0.3);
}

.profile-photo:hover {
    transform: scale(1.02);
    filter: grayscale(80%); /* Slight color reveal on hover */
}

/* === SKILLS & PROJECTS === */
.skills-subheading {
    margin-top: var(--space-l);
    margin-bottom: var(--space-m);
    font-size: var(--font-size-l);
}

/* Skill bars grid */
.skill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-m);
    margin-bottom: var(--space-l);
}

.skill-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: var(--space-s);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}

.skill-box:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.3);
}

.skill-title {
    flex-grow: 1;
}

.skill-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    transition: width 0.8s ease-out;
}

/* Technical skills grid */
.tech-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
}

.tech-skill {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: var(--space-xs) var(--space-s);
    font-size: 0.9rem;
    transition: all var(--transition);
}

/* Scroll reveal animations - simplified */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.animate-on-scroll.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Project Section Styles */
.projects-container {
    width: 100%;
    margin-bottom: var(--space-xl);
}

.project-card {
    background-color: var(--bg-alt);
    border-radius: var(--radius);
    padding: var(--space-m);
    margin-bottom: var(--space-m);
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.project-card:hover {
    transform: translateY(-3px);
}

.project-title {
    font-size: var(--font-size-l);
    margin-bottom: var(--space-s);
    color: var(--accent);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.project-desc {
    font-size: var(--font-size-s);
    color: var(--text-secondary);
    margin-bottom: var(--space-m);
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-m);
}

.project-tag {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: var(--radius);
    font-family: var(--terminal-font);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: all var(--transition);
    font-family: var(--terminal-font);
}

.project-link:hover {
    background-color: var(--accent);
    color: var(--bg);
}

.project-link svg {
    width: 16px;
    height: 16px;
}

.project-link {
    position: relative;
}

.project-link:hover .svg-container svg {
    filter: brightness(0) saturate(100%);
    transition: filter 0.2s ease;
}

/* === FOOTER === */
footer {
    background: var(--bg);
    margin-top: var(--space-xxl);
    padding: var(--space-xl) 0;
    text-align: center;
}

footer h2 {
    display: inline-block;
    margin-bottom: var(--space-l);
    position: relative;
    text-align: center;
}

footer h2::after {
    background-color: var(--accent);
    bottom: -15px;
    content: "";
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 40px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
    margin-top: var(--space-l);
}

.contact-link {
    align-items: center;
    border-radius: var(--radius);
    color: var(--accent);
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-s);
    transition: transform var(--transition);
}

.contact-link:hover {
    transform: translateY(-2px);
}

.contact-link svg {
    height: 20px;
    stroke: var(--accent);
    width: 20px;
}

/* === PGP KEY AND MODAL STYLING === */

/* Email and contact links container */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-l);
    justify-content: center;
    margin-top: var(--space-l);
}

/* Contact link styling */
.contact-link {
    align-items: center;
    border-radius: var(--radius);
    color: var(--accent);
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-s);
    transition: transform var(--transition);
}

.contact-link:hover {
    transform: translateY(-2px);
}

/* Email container to group email and PGP key */
.email-container {
    display: inline-flex;
    align-items: center; /* This ensures vertical centering */
    position: relative;
}

/* PGP Key Link styling - simple positioning */
.pgp-key-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px; /* Reduced from 8px to bring it closer */
    transition: transform 0.3s ease;
}

.pgp-key-icon {
    fill: var(--accent);
    stroke: none;
    width: 22px; /* Slightly reduced size */
    height: 22px;
    position: relative;
    top: 1px; /* Subtle vertical adjustment to align with text */
}

.pgp-key-link:hover {
    background-color: transparent;
    transform: scale(1.1);
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

/* Modal content adjustments */
.modal-content {
    background-color: var(--bg-alt);
    margin: 10% auto;
    padding: var(--space-l);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 80%;
    max-width: 700px;
    max-height: 80vh; /* Limit height on larger screens */
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column; /* Stack contents vertically */
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
}

.modal h3 {
    color: var(--accent);
    margin-bottom: var(--space-m);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Make PGP text area scrollable */
.pgp-key-text {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
    padding: var(--space-m);
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 50vh; /* Limit height to ensure buttons are visible */
    font-family: var(--terminal-font);
    font-size: 14px;
    line-height: 1.4;
    margin: var(--space-m) 0;
    white-space: pre-wrap;
    word-break: break-all;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ensure buttons are always visible */
.pgp-actions {
    display: flex;
    gap: var(--space-m);
    justify-content: flex-end;
    margin-top: var(--space-m);
    position: sticky;
    bottom: 0;
    background-color: var(--bg-alt); /* Match modal background */
    padding-top: var(--space-s); /* Add padding for visual separation */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator */
}

/* Button styling */
.button {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--accent);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Copy button styling - more subtle */
#copyPgpKey {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(var(--accent-rgb), 0.3);
}

/* Download button styling - more prominent */
#downloadPgpKey {
    background-color: var(--accent);
    color: var(--bg);
}

#downloadPgpKey:hover {
    background-color: rgba(var(--accent-rgb), 0.8);
    color: var(--bg);
}

#copyPgpKey:hover {
    background-color: rgba(var(--accent-rgb), 0.2);
    color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Keep links spaced appropriately */
    .links {
        gap: var(--space-m);
    }

    /* Email container keeps email and PGP together */
    .email-container {
        display: inline-flex;
        margin-bottom: 0;
    }

    /* Modal adjustments for mobile */
    .modal-content {
        width: 90%;
        margin: 15% auto;
        padding: var(--space-m);
        max-height: 85vh;
    }

    .pgp-key-text {
        font-size: 12px;
        padding: var(--space-s);
        max-height: 40vh; /* Smaller on mobile */
    }

    .button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .links {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-s);
    }

    .pgp-actions {
        flex-direction: column;
        gap: var(--space-s);
    }

    .button {
        width: 100%;
    }

    .pgp-key-text {
        max-height: 30vh; /* Even smaller on very small screens */
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        /* Adjusted spacing for better mobile use */
        --space-xl: 36px;
        --space-xxl: 48px;

        /* Adjust font sizes for better readability */
        --font-size-xxl: 2.2rem;
        --font-size-xl: 1.4rem;
        --font-size-l: 1.15rem;
    }

    h1 {
        font-size: var(--font-size-xxl);
        max-width: 90%;
    }

    h2 {
        font-size: var(--font-size-xl);
        margin-top: var(--space-l);
        margin-bottom: var(--space-m);
    }

    h3 {
        font-size: var(--font-size-l);
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: var(--font-size-m);
        max-width: 90%;
    }

    .manual-content {
        grid-template-columns: 1fr;
    }

    section {
        margin-top: var(--space-l);
        padding: 0 var(--space-s);
    }

    .skill-grid,
    .tech-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        flex-direction: column; /* Photo appears above text on mobile */
        gap: var(--space-m);
    }

    .about-image {
        width: 100%;
        margin-bottom: var(--space-s);
        padding-right: 0;
    }

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

    .project-desc {
        font-size: 0.85rem;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    :root {
        /* Further reduce font sizes for mobile */
        --font-size-xxl: 1.9rem;
        --font-size-xl: 1.3rem;
        --font-size-l: 1.1rem;
        --font-size-m: 0.95rem;
    }

    .hero {
        min-height: 100vh;
        padding: var(--space-l) var(--space-s);
    }

    .hero h1 {
        font-size: 1.7rem;
        padding: 0 5px;
        line-height: 1.25;
        max-width: 95%;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: var(--space-l);
        line-height: 1.5;
    }

    h2::after {
        width: 30px;
        bottom: -8px;
    }

    .terminal {
        font-size: 12px;
        width: 100%;
        margin: var(--space-s) 0 var(--space-l);
    }

    .terminal-body {
        padding: 12px 8px;
    }

    .command-input,
    .output p,
    .output div {
        font-size: 12px;
    }

    .terminal-cursor {
        height: 1em;
    }

    .links {
        align-items: center;
        flex-direction: column;
        gap: var(--space-m);
    }

    .container {
        padding: var(--space-s);
    }

    .manual {
        padding: 10px 12px;
    }

    .manual-section h3 {
        font-size: 0.9rem;
    }

    .manual-section li {
        font-size: 0.85rem;
    }

    .scroll-arrow {
        bottom: var(--space-m);
    }

    .scroll-arrow svg {
        width: 24px;
        height: 24px;
    }

    .skill-grid,
    .tech-skills-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .skill-box {
        padding: 8px;
        margin-bottom: 0;
    }

    .skill-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .tech-skills-grid {
        gap: 4px;
    }

    .tech-skill {
        padding: 6px 8px;
        font-size: 0.8rem;
    }

    .skills-subheading {
        margin-top: var(--space-m);
        margin-bottom: 12px;
        font-size: 1rem;
    }
    .project-card {
        padding: var(--space-s);
    }

    .project-tags {
        gap: 6px;
    }

    .project-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .project-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}
