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


/* =====================================================
   ABOUT PAGE
===================================================== */

.about-intro {
    padding: 62px 0 28px;
}


/* =====================================================
   HERO / PROFILE CARD
===================================================== */

.about-card {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;

    overflow: hidden;

    min-height: 320px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 28px;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, .025),
        0 25px 70px rgba(0, 0, 0, .055);
}

.about-card::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 0;
    left: 48px;

    width: 110px;
    height: 3px;

    background: #111111;
}


/* =====================================================
   PROFILE
===================================================== */

.about-profile {
    display: flex;
    align-items: center;

    gap: 38px;

    padding: 54px 52px;
}


/* IMAGE */

.profile-image-wrap {
    position: relative;

    flex: 0 0 152px;

    width: 152px;
    height: 152px;
}

.profile-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 7px solid #ffffff;

    box-shadow:
        0 0 0 1px #dedede,
        0 18px 44px rgba(0, 0, 0, .14);
}

.profile-dot {
    position: absolute;

    right: 8px;
    bottom: 13px;

    width: 17px;
    height: 17px;

    background: #111111;

    border: 4px solid #ffffff;
    border-radius: 50%;
}


/* CONTENT */

.about-profile-content {
    max-width: 600px;
}

.profile-topline {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: #999999;

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.profile-topline i {
    width: 4px;
    height: 4px;

    display: block;

    background: #c3c3c3;

    border-radius: 50%;
}

.about-profile-content h1 {
    margin: 0;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 56px);
    font-weight: 500;

    line-height: .98;

    letter-spacing: -2.3px;
}

.profile-title {
    max-width: 540px;

    margin-top: 17px;

    color: #666666;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.65;
}


/* =====================================================
   SOCIAL LINKS
===================================================== */

.profile-socials {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 24px;
}

.profile-socials a {
    display: inline-flex;
    align-items: center;

    min-height: 34px;

    padding: 0 14px;

    color: #575757;

    background: #f7f7f7;

    border: 1px solid #e7e7e7;
    border-radius: 999px;

    font-family: "Inter", sans-serif;

    font-size: 10px;
    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.profile-socials a:hover {
    color: #ffffff;

    background: #111111;

    border-color: #111111;

    transform: translateY(-2px);
}


/* =====================================================
   STATS
===================================================== */

.about-stats {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #181818 0%,
            #0e0e0e 100%
        );
}

.about-stats::before {
    content: "";

    position: absolute;

    top: 28px;
    right: 28px;

    width: 7px;
    height: 7px;

    background: #ffffff;

    border-radius: 50%;

    opacity: .9;
}

.about-stat {
    display: flex;
    flex-direction: column;

    padding: 24px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, .12);
}

.about-stat:last-child {
    border-bottom: 0;
}

.about-stat strong {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;
    font-weight: 400;

    line-height: 1;
}

.about-stat span {
    margin-top: 8px;

    color: rgba(255, 255, 255, .55);

    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =====================================================
   SHARED SECTION LAYOUT
===================================================== */

.biography,
.topics-section,
.writing-section {
    padding: 125px 0;
}

.biography-grid,
.topics-grid,
.writing-grid {
    display: grid;

    grid-template-columns: 145px minmax(0, 1fr);

    gap: 80px;
}


/* SECTION INDEX */

.section-side {
    position: relative;

    padding-top: 5px;

    color: #929292;
}

.section-side span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #111111;

    background: #f3f3f3;

    border: 1px solid #e5e5e5;
    border-radius: 50%;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 13px;
}

.section-side p {
    max-width: 110px;

    margin-top: 14px;

    color: #8d8d8d;

    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* KICKER */

.section-kicker {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    color: #8f8f8f;

    font-family: "Inter", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.section-kicker::before {
    content: "";

    width: 22px;
    height: 1px;

    background: #111111;
}


/* =====================================================
   BIOGRAPHY
===================================================== */

.biography {
    border-bottom: 1px solid #ececec;
}

.biography-content {
    max-width: 880px;
}

.biography-content h2 {
    max-width: 820px;

    margin: 0;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;

    line-height: 1.055;

    letter-spacing: -2.8px;
}

.biography-text {
    max-width: 710px;

    margin-top: 54px;
}

.biography-text p {
    margin: 0 0 25px;

    color: #676767;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.9;
}

.biography-text .lead {
    position: relative;

    margin-bottom: 34px;

    padding-left: 24px;

    color: #222222;

    font-size: 21px;

    line-height: 1.72;

    border-left: 2px solid #111111;
}


/* =====================================================
   QUOTE
===================================================== */

.quote-section {
    padding: 72px 0;
}

.quote-box {
    position: relative;

    max-width: 970px;

    margin-left: auto;

    overflow: hidden;

    padding: 74px 78px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 100% 0%,
            #2e2e2e 0%,
            #171717 35%,
            #101010 75%
        );

    border-radius: 28px;

    box-shadow:
        0 30px 75px rgba(0, 0, 0, .12);
}

.quote-box::after {
    content: "";

    position: absolute;

    right: -110px;
    bottom: -140px;

    width: 330px;
    height: 330px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 50%;
}

.quote-symbol {
    position: absolute;

    top: 6px;
    left: 30px;

    color: rgba(255, 255, 255, .1);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 145px;

    line-height: 1;
}

.quote-box p {
    position: relative;
    z-index: 2;

    max-width: 790px;

    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(29px, 4vw, 44px);
    font-weight: 400;

    line-height: 1.28;

    letter-spacing: -1.4px;
}


/* =====================================================
   TOPICS
===================================================== */

.topics-section {
    padding-top: 110px;
}

.section-heading h2 {
    max-width: 720px;

    margin: 0;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 58px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2.2px;
}

.topic-list {
    margin-top: 64px;

    border-top: 1px solid #dcdcdc;
}

.topic-item {
    position: relative;

    display: grid;

    grid-template-columns: 60px minmax(0, 1fr) 46px;

    align-items: center;

    gap: 28px;

    min-height: 132px;

    padding: 27px 10px;

    color: inherit;

    border-bottom: 1px solid #e4e4e4;

    transition:
        background .25s ease,
        padding .25s ease,
        color .25s ease;
}

.topic-item::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 2px;

    background: #111111;

    transition: width .3s ease;
}

.topic-item:hover::before {
    width: 100%;
}

.topic-number {
    color: #a0a0a0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
}

.topic-main h3 {
    margin: 0;

    color: #191919;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 29px;
    font-weight: 400;

    letter-spacing: -.9px;
}

.topic-main p {
    max-width: 650px;

    margin: 7px 0 0;

    color: #777777;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    line-height: 1.65;
}

.topic-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: #ffffff;

    background: #111111;

    border-radius: 50%;

    font-size: 14px;

    transition:
        transform .2s ease,
        background .2s ease;
}

.topic-item:hover .topic-arrow {
    transform: translate(3px, -3px);
}


/* =====================================================
   WHY I WRITE
===================================================== */

.writing-section {
    position: relative;

    overflow: hidden;

    color: #ffffff;

    background: #111111;

    border: 0;
}

.writing-section::after {
    content: "";

    position: absolute;

    right: -180px;
    top: -220px;

    width: 520px;
    height: 520px;

    border:
        1px solid rgba(255, 255, 255, .06);

    border-radius: 50%;
}

.writing-section .container {
    position: relative;
    z-index: 2;
}

.writing-section .section-side span {
    color: #ffffff;

    background:
        rgba(255, 255, 255, .07);

    border-color:
        rgba(255, 255, 255, .12);
}

.writing-section .section-side p {
    color: rgba(255, 255, 255, .45);
}

.writing-section .section-kicker {
    color: rgba(255, 255, 255, .45);
}

.writing-section .section-kicker::before {
    background: #ffffff;
}

.writing-content {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 95px;
}

.writing-content h2 {
    max-width: 550px;

    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(41px, 5vw, 59px);
    font-weight: 400;

    line-height: 1.06;

    letter-spacing: -2.2px;
}

.writing-copy {
    padding-top: 29px;
}

.writing-copy p {
    max-width: 560px;

    margin: 0 0 26px;

    color: rgba(255, 255, 255, .66);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    line-height: 1.9;
}

.writing-copy p:first-child {
    color: rgba(255, 255, 255, .9);
}


/* =====================================================
   CTA
===================================================== */

.about-cta {
    padding: 110px 0 25px;
}

.cta-card {
    position: relative;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    overflow: hidden;

    padding: 65px;

    color: #111111;

    background: #f4f4f2;

    border: 1px solid #e5e5e3;
    border-radius: 28px;
}

.cta-card::after {
    content: "↗";

    position: absolute;

    right: 35px;
    top: -25px;

    color: rgba(0, 0, 0, .035);

    font-family: Georgia, "Times New Roman", serif;

    font-size: 180px;

    line-height: 1;
}

.cta-card .section-kicker {
    color: #858585;
}

.cta-card h2 {
    position: relative;
    z-index: 2;

    max-width: 710px;

    margin: 0;

    color: #111111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 58px);
    font-weight: 400;

    line-height: 1.07;

    letter-spacing: -2px;
}

.cta-button {
    position: relative;
    z-index: 3;

    flex: 0 0 auto;

    min-width: 170px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 0 20px;

    color: #ffffff;

    background: #111111;

    border: 1px solid #111111;
    border-radius: 999px;

    font-family: "Inter", sans-serif;

    font-size: 10px;
    font-weight: 600;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.cta-button:hover {
    color: #111111;

    background: transparent;

    transform: translateY(-3px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .about-card {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;

        padding: 30px 38px;
    }

    .about-stat {
        flex: 1;

        padding: 10px 22px;

        border-right:
            1px solid rgba(255, 255, 255, .12);

        border-bottom: 0;
    }

    .about-stat:last-child {
        border-right: 0;
    }

    .writing-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .writing-copy {
        padding-top: 0;
    }

}


@media (max-width: 760px) {

    .about-intro {
        padding-top: 32px;
    }

    .about-card {
        border-radius: 21px;
    }

    .about-card::before {
        left: 28px;

        width: 80px;
    }

    .about-profile {
        align-items: flex-start;
        flex-direction: column;

        gap: 26px;

        padding: 36px 28px;
    }

    .profile-image-wrap {
        flex-basis: 112px;

        width: 112px;
        height: 112px;
    }

    .profile-image {
        border-width: 5px;
    }

    .profile-dot {
        width: 15px;
        height: 15px;

        right: 5px;
        bottom: 8px;
    }

    .profile-title {
        font-size: 15px;
    }

    .about-stats {
        align-items: stretch;
        flex-direction: column;

        padding: 26px 30px;
    }

    .about-stat {
        padding: 17px 0;

        border-right: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, .12);
    }

    .about-stat:last-child {
        border-bottom: 0;
    }


    /* SECTIONS */

    .biography,
    .topics-section,
    .writing-section {
        padding: 85px 0;
    }

    .biography-grid,
    .topics-grid,
    .writing-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .section-side {
        display: flex;
        align-items: center;

        gap: 12px;

        padding-bottom: 16px;

        border-bottom: 1px solid #ececec;
    }

    .writing-section .section-side {
        border-color:
            rgba(255, 255, 255, .12);
    }

    .section-side p {
        max-width: none;

        margin: 0;
    }


    /* BIO */

    .biography-content h2 {
        letter-spacing: -1.7px;
    }

    .biography-text {
        margin-top: 40px;
    }


    /* QUOTE */

    .quote-section {
        padding: 38px 0;
    }

    .quote-box {
        padding: 58px 35px;

        border-radius: 22px;
    }

    .quote-symbol {
        left: 18px;

        font-size: 110px;
    }


    /* TOPICS */

    .topic-list {
        margin-top: 44px;
    }

    .topic-item {
        grid-template-columns: 38px minmax(0, 1fr) 38px;

        gap: 15px;

        min-height: 112px;

        padding: 22px 0;
    }

    .topic-main h3 {
        font-size: 25px;
    }


    /* CTA */

    .about-cta {
        padding-top: 75px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;

        gap: 35px;

        padding: 43px 32px;

        border-radius: 22px;
    }

}


@media (max-width: 480px) {

    .about-profile {
        padding: 30px 22px;
    }

    .profile-socials {
        gap: 7px;
    }

    .profile-socials a {
        padding: 0 11px;

        font-size: 9px;
    }

    .about-stats {
        padding: 22px;
    }

    .about-stat strong {
        font-size: 27px;
    }

    .biography-text .lead {
        padding-left: 17px;

        font-size: 19px;
    }

    .topic-item {
        grid-template-columns: 31px minmax(0, 1fr) 34px;

        gap: 11px;
    }

    .topic-main h3 {
        font-size: 22px;
    }

    .topic-main p {
        font-size: 13px;
    }

    .topic-arrow {
        width: 32px;
        height: 32px;

        font-size: 12px;
    }

    .quote-box {
        padding:
            52px
            27px
            45px;
    }

    .cta-card {
        padding: 38px 25px;
    }

    .cta-button {
        width: 100%;
    }

}

/* =====================================================
   ABOUT GALLERY
===================================================== */

.about-gallery-section {
    padding: 105px 0 60px;
}

.about-gallery-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.about-gallery-heading h2 {
    margin: 0;

    color: #111;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(40px, 5vw, 58px);
    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -2px;
}

.about-gallery {
    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    grid-template-rows:
        260px
        260px;

    gap: 16px;
}

.about-gallery-item {
    margin: 0;

    overflow: hidden;

    background: #eee;

    border-radius: 20px;
}

.about-gallery-large {
    grid-row: 1 / 3;
}

.about-gallery-wide {
    grid-column: 2;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .5s ease;
}

/* 2. fotoğraf dikey olduğu için tamamını göster */
.about-gallery-item:nth-child(2) img {
    object-position: center 18%;
}
.about-gallery-item:nth-child(2):hover img {
    transform: scale(1.07);
}

.about-gallery-item:hover img {
    transform: scale(1.025);
}


/* =====================================================
   CAREER
===================================================== */

.career-list {
    margin-top: 60px;

    border-top: 1px solid #dedede;
}

.career-item {
    display: grid;

    grid-template-columns:
        55px
        minmax(0, 1fr);

    gap: 28px;

    padding: 31px 0;

    border-bottom: 1px solid #e5e5e5;
}

.career-number {
    color: #aaa;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;
}

.career-item h3 {
    margin: 0;

    color: #171717;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;
    font-weight: 400;

    letter-spacing: -.7px;
}

.career-item p {
    max-width: 680px;

    margin: 9px 0 0;

    color: #727272;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    line-height: 1.7;
}


@media (max-width: 700px) {

    .about-gallery-section {
        padding: 75px 0 35px;
    }

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

        grid-template-rows: none;
    }

    .about-gallery-item,
    .about-gallery-large,
    .about-gallery-wide {
        grid-column: auto;
        grid-row: auto;

        height: 250px;
    }

    .about-gallery-large {
        height: 350px;
    }

}