@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.post-title,
.first-entry .entry-header h1 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.post-content {
    line-height: 1.75;
}

.index-content {
    text-align: left;
    margin: 0;
    padding: 0;
}

.index-content h1 {
    margin-top: 0;
}

.index-content p {
    text-indent: 0;
    margin-left: 0;
}

.index-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 240px);
    gap: 18px;
    margin-top: 44px;
}

.index-showcase__column {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    grid-column: 2;
    grid-row: 1 / span 2;
}

.index-showcase__figure {
    position: relative;
    min-height: 240px;
    margin: 0;
    overflow: hidden;
    border-top: 2px solid rgba(184, 115, 51, 0.65);
    background: transparent;
}

.index-showcase > .index-showcase__figure {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.index-showcase__link {
    display: block;
    position: absolute;
    inset: 0;
    border: 0 !important;
}

.index-showcase__link img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) sepia(100%) saturate(220%) hue-rotate(340deg) brightness(0.9) contrast(1.05);
    transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.index-showcase__label {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12px 14px;
    color: #171513;
    background: rgba(184, 115, 51, 0.92);
    font-size: 0.82rem;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.index-showcase__figure:hover .index-showcase__link img,
.index-showcase__link:focus-visible img {
    filter: grayscale(100%) sepia(100%) saturate(250%) hue-rotate(340deg) brightness(0.88) contrast(1.1);
    opacity: 0.88;
    transform: scale(1.015);
}

.index-showcase__figure:hover .index-showcase__label,
.index-showcase__link:focus-visible .index-showcase__label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .index-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 14px;
        margin-top: 32px;
    }

    .index-showcase__column {
        grid-column: auto;
        grid-row: auto;
        gap: 14px;
    }

    .index-showcase__figure {
        aspect-ratio: 4 / 3;
    }

    .index-showcase > .index-showcase__figure {
        grid-column: auto;
        grid-row: auto;
    }

    .index-showcase__label {
        opacity: 1;
        transform: translateY(0);
    }
}

.copper {
    color: #b87333;
}

.post-content a:not(.linkedin-button) {
    border-bottom: 2px solid rgba(184, 115, 51, 0.5);
}

.post-content a:not(.linkedin-button):hover {
    border-bottom-color: #b87333;
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    margin-top: 2px;
    color: #b87333;
    border: 0 !important;
    border-bottom: 0 !important;
    text-decoration: none;
    background: transparent;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.linkedin-button:hover {
    transform: translateY(-1px);
    opacity: 0.7;
}

.linkedin-icon {
    width: 50px;
    height: 50px;
    fill: currentColor;
}

.header {
    justify-content: flex-start;
    padding: 12px 24px;
}

.container {
    min-height: 100vh;
    justify-content: flex-start;
    text-align: left;
}

.container > main {
    flex: 1 0 auto;
}

.header__inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.header__right {
    margin-left: auto;
}

.menu__inner {
    padding: 0;
    margin: 0;
}

.menu__lang {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    opacity: 0.75;
    font-size: 0.85rem;
}

.menu__lang-link {
    text-transform: lowercase;
    margin-right: 0 !important;
    text-decoration: none;
}

.menu__lang-link.is-active {
    opacity: 1;
    font-weight: 600;
}

.menu__lang-sep {
    margin: 0 6px;
    opacity: 0.5;
}

.footer-center {
    text-align: center;
}

.footer {
    margin-top: auto;
}

.team-page {
    padding-top: 8px;
}

.team-member {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-top: 12px;
}

.team-member__photo {
    width: 160px;
    height: 160px;
    border-radius: 999px;
    object-fit: cover;
    filter: grayscale(100%) sepia(100%) saturate(220%) hue-rotate(340deg) brightness(0.9) contrast(1.05);
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.team-member__photo--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed currentColor;
    opacity: 0.45;
    font-size: 0.85rem;
}

.team-member__name {
    color: inherit;
    opacity: 0.45;
    font-size: 0.95rem;
}

.team-member__role {
    color: inherit;
    opacity: 0.38;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.team-member__description {
    color: inherit;
    opacity: 0.48;
    font-size: 0.82rem;
    line-height: 1.45;
    max-width: 28ch;
    text-align: center;
}

.team-member:hover .team-member__photo {
    filter: grayscale(100%) sepia(100%) saturate(250%) hue-rotate(340deg) brightness(0.88) contrast(1.1);
    opacity: 0.88;
}

.team-member:hover .team-member__name {
    opacity: 0.7;
}

.team-member:hover .team-member__role {
    opacity: 0.55;
}

.team-member:hover .team-member__description {
    opacity: 0.68;
}
