:root {
    --bg: #ffffff;
    --accent: #000000;
    --accent-soft: #333333;
    --panel: #ffffff;
    --text: #000000;
    --text-light: #1a1a1a;
    --muted: #666666;
}

* { box-sizing: border-box; }

html {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: "Helvetica", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }

.hero {
    padding: clamp(32px, 6vw, 72px) clamp(18px, 7vw, 42px) clamp(20px, 5vw, 56px);
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    gap: 8px;
    transform-origin: center top;
    will-change: transform;
}

.logo {
    margin: 0;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform-origin: center top;
    will-change: transform;
}

.logo-img {
    width: clamp(640px, 80vw, 1200px);
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: translateY(-2px);
}

.logo-tep {
    height: clamp(40px, 5vw, 60px);
    width: auto;
    margin-left: 20px;
    align-self: center;
}

.sub {
    margin: 0;
    color: var(--accent);
    font-size: clamp(15px, 2.4vw, 22px);
    letter-spacing: -0.03em;
}

.menu {
    display: flex;
    align-items: baseline;
    gap: clamp(14px, 3vw, 32px);
    margin-top: 4px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    color: var(--text);
}

.menu a {
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 0;
}

.menu a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu a:hover:after { opacity: 1; }

.menu a.active:after { opacity: 1; }

.menu .social-link:after { display: none; }

.menu .social-link {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.menu .social-link:hover {
    opacity: 1;
}

/* Dropdown Menu */
.menu-dropdown {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.menu-dropdown .dropdown-link {
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 0;
}

.menu-dropdown .dropdown-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.menu-dropdown .dropdown-link:hover:after,
.menu-dropdown .dropdown-link.active:after {
    opacity: 1;
}

/* Dropdown toggle button */
.dropdown-toggle {
    background: none;
    border: none;
    padding: 0 2px;
    cursor: pointer;
    color: var(--text);
    font-size: 10px;
    line-height: inherit;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    vertical-align: baseline;
    min-width: 20px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-toggle::after {
    content: '\25BE';
}

.dropdown-toggle:hover {
    opacity: 1;
}

.menu-dropdown.open .dropdown-toggle::after {
    content: '\25B4';
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    margin-top: 8px;
}

.menu-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0;
    padding: 4px 0;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.dropdown-menu a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-menu a:hover:after,
.dropdown-menu a.active:after {
    opacity: 1;
}

/* Mobile dropdown */
@media (max-width: 720px) {
    .menu-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .dropdown-toggle {
        padding: 0 4px;
        font-size: 14px;
        min-width: 24px;
        min-height: 24px;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg);
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 10px 16px;
        min-width: 160px;
        margin-top: 6px;
    }

    .menu-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

.layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(18px, 5vw, 40px) clamp(70px, 7vw, 110px);
    display: grid;
    gap: 28px;
    flex: 1;
}

.section-title {
    color: var(--text);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.post-header {
    position: relative;
    background: var(--bg);
    border-radius: 0;
    overflow: hidden;
    min-height: 280px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    margin-top: 2px;
}

.post-header .image-wrap {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.post-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #04160d;
    border-radius: 0;
}

.post-header .content {
    position: relative;
    padding: clamp(18px, 3vw, 28px);
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-header .meta {
    color: var(--text);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.post-header .caption {
    color: var(--accent);
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.post-header .description {
    color: var(--text);
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.6;
    margin-top: 8px;
}

.post-header .view-btn {
    align-self: flex-start;
    padding: 10px 16px;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0,0,0,0.05);
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.post-header .view-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post-card {
    background: var(--panel);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
    transform: translateY(-4px);
}

.post-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0;
    background: #04160d;
}

.post-card .card-body {
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.post-card .caption {
    color: var(--accent);
    font-size: 13px;
    letter-spacing: -0.01em;
}

.post-card .description {
    color: var(--text);
    font-size: 12px;
    line-height: 1.5;
}

.post-card .date {
    color: var(--text);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact {
    background: var(--panel);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    display: grid;
    gap: 12px;
}

.contact h2 {
    margin: 0;
    letter-spacing: 0.18em;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text);
}

.contact form {
    display: grid;
    gap: 10px;
}

.contact label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border-radius: 0;
    font-size: 15px;
}

.contact button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 120;
    padding: 24px;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: min(90vw, 1200px);
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.lightbox .close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 0;
    cursor: pointer;
    font-size: 16px;
}

.empty {
    color: var(--muted);
    padding: 12px 0;
}

.footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 18px clamp(20px, 6vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-left {
    text-transform: none;
}

.footer-right {
    display: flex;
    gap: 32px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer a {
    color: var(--text);
    text-decoration: none;
    transition: opacity 0.2s ease;
    position: relative;
    padding-bottom: 4px;
}

.footer a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer a:hover:after {
    opacity: 1;
}

.gate-screen {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1);
    overflow: hidden;
}

/* Vignette - sanfter Randschatten */
.gate-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ecken-Vignette deaktiviert */
.gate-screen::after {
    display: none;
}

.gate-screen.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
}

/* Logo Container */
.gate-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gate-logo {
    width: clamp(300px, 50vw, 600px);
    transition: transform 0.6s ease, filter 0.6s ease, opacity 0.6s ease;
    position: relative;
    z-index: 1;
    filter: grayscale(100%) brightness(1.6);
    opacity: 0.3;
}

.gate-logo-container:hover .gate-logo {
    transform: scale(1.08) translateY(-5px) rotate(-3deg);
    z-index: 10;
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.gate-screen.hidden .gate-logo {
    transform: scale(1.1) translateY(-10px);
}

/* Nebelschwaden - dichter Nebel */
.fog-layer {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-out;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
        rgba(220, 220, 220, 0.9) 0%,
        rgba(210, 210, 210, 0.7) 30%,
        rgba(200, 200, 200, 0.4) 60%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(40px);
}

.fog-1 {
    width: 90%;
    height: 45%;
    top: -5%;
    left: -20%;
    animation: fogSlide1 28s ease-in-out infinite;
}

.fog-2 {
    width: 85%;
    height: 40%;
    top: 55%;
    left: 35%;
    animation: fogSlide2 32s ease-in-out infinite;
    animation-delay: -12s;
}

.fog-3 {
    width: 80%;
    height: 35%;
    top: 30%;
    left: -25%;
    animation: fogSlide3 36s ease-in-out infinite;
    animation-delay: -20s;
}

@keyframes fogSlide1 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(10%) translateY(-5%);
        opacity: 0.95;
    }
}

@keyframes fogSlide2 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.85;
    }
    50% {
        transform: translateX(-8%) translateY(3%);
        opacity: 1;
    }
}

@keyframes fogSlide3 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.75;
    }
    50% {
        transform: translateX(5%) translateY(-3%);
        opacity: 0.9;
    }
}

/* Nebel weicht beim Hover - gleitet zur Seite */
.gate-logo-container:hover .fog-1 {
    transform: translateX(80%);
    opacity: 0;
}

.gate-logo-container:hover .fog-2 {
    transform: translateX(-100%);
    opacity: 0;
}

.gate-logo-container:hover .fog-3 {
    transform: translateX(60%);
    opacity: 0;
}

/* Nebel beim Klick (hidden) */
.gate-screen.hidden .fog-layer {
    opacity: 0;
    transform: translateX(-100%);
}

/* Page intro/description container */
.page-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    padding: 0 24px;
    position: relative;
}

.page-intro::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 20px;
}

.page-intro-caption {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.page-intro-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin: 0;
}

.page-intro::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 20px auto 0;
}

/* Artists page */
.artists-page {
    padding-top: 60px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.artists-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.artist-link {
    color: var(--text);
    font-size: 18px;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    padding: 3px 0;
    transition: color 0.2s ease;
}

.artist-link:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--text);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.artist-link:hover:after {
    opacity: 1;
}

.artist-name {
    color: var(--text);
    font-size: 18px;
    letter-spacing: 0.02em;
}

/* Contact page */
.contact-page {
    padding-top: 60px;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-email a {
    color: var(--text);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    padding: 3px 0;
    transition: color 0.2s ease;
}

.contact-email a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--text);
    opacity: 0;
    transition: opacity 0.2s ease;
}

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

.contact-email a:hover:after {
    opacity: 1;
}

/* Artist detail page */
.artist-page {
    padding-top: 40px;
    min-height: 50vh;
}

.artist-not-found {
    text-align: center;
    padding: 60px 20px;
}

.back-link {
    display: inline-block;
    color: var(--text);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

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

.artist-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}

.artist-profile-image {
    border-radius: 0;
    overflow: hidden;
}

.artist-profile-image img {
    width: 100%;
    height: auto;
    display: block;
    background: #04160d;
}

.artist-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.artist-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--accent);
    letter-spacing: -0.02em;
}

.artist-bio {
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

.artist-instagram {
    margin-top: 8px;
}

.artist-instagram a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.artist-instagram .instagram-icon {
    width: 20px;
    height: 20px;
}

.artist-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.artist-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

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

.artist-links .link-icon {
    width: 18px;
    height: 18px;
}

.artist-gallery {
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    background: #04160d;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-size: 13px;
}

/* Policy pages */
.policy-page {
    padding-top: 40px;
    min-height: 50vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--accent);
    font-size: 22px;
    margin: 32px 0 16px;
    letter-spacing: -0.01em;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--text);
    font-size: 16px;
    margin: 24px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.policy-content h4 {
    color: var(--text);
    font-size: 15px;
    margin: 20px 0 10px;
}

.policy-content p {
    color: var(--text);
    margin: 0 0 16px;
}

.policy-content ul {
    color: var(--text);
    margin: 0 0 16px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content strong {
    color: var(--text);
    font-weight: 700;
}

@media (max-width: 720px) {
    .artist-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .artist-profile-image {
        max-width: 280px;
    }

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

    .gallery-item img {
        height: auto;
    }
}

@media (max-width: 1024px) {
    .logo-img { width: clamp(400px, 70vw, 800px); }
    .logo-tep { height: clamp(30px, 4vw, 45px); margin-left: 15px; }
    .hero { padding: 30px 18px 44px; }
    .post-header { grid-template-columns: 1fr; min-height: 0; }
    .post-header img { height: auto; object-fit: contain; }
    .footer { flex-direction: column; text-align: center; }
    .footer-right { justify-content: center; }
}

@media (max-width: 720px) {
    .logo-img { width: 70vw; }
    .logo-tep { height: 20px; margin-left: 8px; }
    .sub { font-size: clamp(15px, 5vw, 20px); }
    .layout { padding: 0 16px 60px; gap: 24px; }
    .section-title { letter-spacing: 0.18em; }
    .post-card img { height: auto; max-width: 100%; }
    .menu { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 22px 12px 34px; }
    .logo { font-size: 32px; letter-spacing: -0.04em; }
    .logo-img { width: 65vw; }
    .logo-tep { height: 16px; margin-left: 6px; }
    .sub { font-size: 15px; }
    .post-header img { height: auto; }
    .post-card img { height: auto; }
    .lightbox { padding: 12px; }
    .footer-right { flex-direction: column; gap: 12px; }
}

/* Artist name styling */
.artist-name {
    font-size: 20px;
    font-weight: bold;
    font-stretch: expanded;
    letter-spacing: 0;
}

/* About page styling */
.about-content {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
}

/* Publications page styling */
.publications-page {
    padding-top: 60px;
    min-height: 50vh;
}

.publications-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.publication-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.publication-cover {
    width: 100%;
}

.publication-cover img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--muted);
}

.publication-details {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
}

.publication-author {
    font-size: 20px;
    font-weight: bold;
    font-stretch: expanded;
    letter-spacing: 0;
    margin: 0 0 10px 0;
    color: var(--text);
}

.publication-title {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 15px 0;
    font-style: italic;
    color: var(--text);
}

.publication-info,
.publication-isbn {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    margin: 5px 0;
    color: var(--text);
}

.publication-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-size: 16px;
    font-weight: normal;
}

.publication-link:hover {
    opacity: 0.8;
}

/* Mobile responsive for publications */
@media (max-width: 768px) {
    .publication-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .publication-cover {
        max-width: 300px;
    }
}
