.other-projects-section {
    padding: 90px 0;
    border-top: 1px solid var(--secondary-color);
}

.other-projects-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.other-projects-eyebrow {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.other-projects-title {
    margin-bottom: 12px;
    color: var(--headline-color);
    font-size: 2.5rem;
    line-height: 1.25;
}

.other-projects-subtitle {
    color: #aaa;
    font-size: 1.05rem;
}

.other-projects-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 11px 18px;
    border: 1px solid #454545;
    border-radius: 8px;
    background: #202020;
    color: var(--headline-color);
    font-size: 0.9rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.other-projects-link:hover {
    border-color: var(--primary-color);
    background: #292929;
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.other-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.other-project-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    min-width: 0;
    padding: 16px 0;
}

.other-project-card.is-reversed {
    flex-direction: row-reverse;
}

.other-project-card.is-reversed .other-project-content {
    text-align: right;
}

.other-project-icon {
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    object-fit: contain;
}

.other-project-content {
    min-width: 0;
}

.other-project-name {
    margin-bottom: 10px;
    color: var(--headline-color);
    font-size: 1.35rem;
    line-height: 1.3;
}

.other-project-description {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .other-projects-grid {
        grid-template-columns: 1fr;
    }

    .other-project-card.is-reversed {
        flex-direction: row;
    }

    .other-project-card.is-reversed .other-project-content {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .other-projects-section {
        padding: 60px 0;
    }

    .other-projects-header {
        margin-bottom: 34px;
    }

    .other-projects-title {
        font-size: 2rem;
    }

    .other-project-card,
    .other-project-card.is-reversed {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 12px 0;
    }

    .other-project-icon {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
    }
}
