/* Kurumsal sayfalar — sol görsel, sağ metin */

.by-about-page {
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: #222;
    background: linear-gradient(180deg, #f7faf8 0%, #ffffff 42%);
}

.by-about-page .by-about-body {
    padding: 3.25rem 0 4.5rem;
}

.by-about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 992px) {
    .by-about-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 3rem;
    }
}

.by-about-visual {
    position: relative;
    min-width: 0;
}

@media (min-width: 992px) {
    .by-about-visual {
        position: sticky;
        top: 110px;
    }
}

.by-about-visual-card {
    background: #fff;
    border: 1px solid #e7eee9;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 14px 40px rgba(17, 108, 65, 0.08);
}

.by-about-img-link {
    display: block;
    line-height: 0;
    cursor: zoom-in;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.by-about-img-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.by-about-img-link:focus-visible {
    outline: 2px solid #116c41;
    outline-offset: 3px;
}

.by-about-img-link--secondary {
    margin-top: 0.85rem;
}

.by-about-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.by-about-img-link--secondary .by-about-img {
    aspect-ratio: 16 / 9;
    max-height: 180px;
}

.by-about-main {
    min-width: 0;
}

.by-about-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #116c41;
    margin-bottom: 0.65rem;
}

.by-about-title {
    font-size: clamp(1.6rem, 2.4vw, 2.15rem);
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin: 0 0 1.25rem;
}

.by-about-content {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #444;
}

.by-about-content > *:first-child {
    margin-top: 0;
}

.by-about-content p {
    margin: 0 0 1.05rem;
    color: #444;
}

.by-about-content h2,
.by-about-content h3 {
    color: #111;
    font-weight: 700;
    line-height: 1.35;
    margin: 1.6rem 0 0.75rem;
}

.by-about-content h2 {
    font-size: 1.35rem;
}

.by-about-content h3 {
    font-size: 1.15rem;
}

.by-about-content ul,
.by-about-content ol {
    margin: 0 0 1.15rem;
    padding-left: 1.2rem;
}

.by-about-content li {
    margin-bottom: 0.45rem;
}

.by-about-content li::marker {
    color: #116c41;
}

.by-about-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

.by-about-content a {
    color: #116c41;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.by-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.by-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.7rem 1.35rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.by-about-btn--primary {
    background: #116c41;
    color: #fff !important;
    border: 1px solid #116c41;
}

.by-about-btn--primary:hover {
    background: #0d5232;
    border-color: #0d5232;
    color: #fff !important;
    transform: translateY(-1px);
}

.by-about-btn--outline {
    background: #fff;
    color: #116c41 !important;
    border: 1px solid #116c41;
}

.by-about-btn--outline:hover {
    background: #116c41;
    color: #fff !important;
}

@media (max-width: 575px) {
    .by-about-page .by-about-body {
        padding: 2.25rem 0 3rem;
    }

    .by-about-btn {
        width: 100%;
    }
}
