/* extracted from templates/about.html */
.aboutme-page{
    direction:rtl;
    min-height:100vh;
    padding:52px 0 72px;
    background:
        radial-gradient(circle at 12% 8%,rgba(236,72,153,.18),transparent 32%),
        radial-gradient(circle at 90% 18%,rgba(244,114,182,.20),transparent 34%),
        linear-gradient(180deg,#fff6fb 0%,#fff 58%,#fff4fa 100%);
    color:#241422;
}

.aboutme-wrap{
    width:min(1120px,calc(100% - 32px));
    margin:auto;
}

.aboutme-hero{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(280px,.95fr);
    gap:34px;
    align-items:center;
    border-radius:42px;
    padding:42px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(219,39,119,.16);
    box-shadow:0 30px 90px rgba(157,23,77,.13);
    backdrop-filter:blur(22px);
    overflow:hidden;
    position:relative;
}

.aboutme-hero:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:999px;
    left:-150px;
    top:-150px;
    background:radial-gradient(circle,rgba(236,72,153,.22),transparent 68%);
}

.aboutme-text,
.aboutme-media{
    position:relative;
    z-index:2;
}

.aboutme-kicker{
    display:inline-flex;
    padding:8px 15px;
    border-radius:999px;
    color:#9f1239;
    background:rgba(236,72,153,.10);
    border:1px solid rgba(236,72,153,.18);
    font-size:12px;
    font-weight:950;
    margin-bottom:14px;
}

.aboutme-title{
    font-size:clamp(36px,4.8vw,66px);
    line-height:1.1;
    font-weight:950;
    letter-spacing:-.04em;
    margin:0 0 18px;
}

.aboutme-desc{
    color:#765266;
    font-size:16px;
    line-height:2.05;
    margin:0 0 24px;
}

.aboutme-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.aboutme-btn-main,
.aboutme-btn-soft{
    min-height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 22px;
    border-radius:999px;
    font-weight:950;
    text-decoration:none!important;
}

.aboutme-btn-main{
    color:#fff!important;
    background:linear-gradient(135deg,#ec4899,#9f1239);
    box-shadow:0 18px 36px rgba(236,72,153,.24);
}

.aboutme-btn-soft{
    color:#241422!important;
    background:#fff;
    border:1px solid rgba(36,20,34,.10);
}

.aboutme-card{
    border-radius:34px;
    padding:18px;
    background:#fff;
    border:1px solid rgba(219,39,119,.16);
    box-shadow:0 28px 70px rgba(157,23,77,.14);
}

.aboutme-card img{
    width:100%;
    aspect-ratio:4/4.5;
    object-fit:cover;
    display:block;
    border-radius:26px;
}

.aboutme-placeholder{
    width:100%;
    aspect-ratio:4/4.5;
    border-radius:26px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#fff,#fff0f7);
    color:#9f1239;
    font-size:42px;
    font-weight:950;
}

.aboutme-boxes{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
    margin-top:22px;
}

.aboutme-box{
    border-radius:26px;
    padding:20px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(219,39,119,.14);
    box-shadow:0 18px 42px rgba(157,23,77,.08);
}

.aboutme-box strong{
    display:block;
    color:#9f1239;
    font-weight:950;
    margin-bottom:6px;
}

.aboutme-box span{
    color:#765266;
    line-height:1.8;
    font-size:13px;
}

@media(max-width:991px){
    .aboutme-hero{
        grid-template-columns:1fr;
        padding:26px;
        border-radius:34px;
        text-align:center;
    }

    .aboutme-actions{
        justify-content:center;
        flex-wrap:nowrap;
        overflow-x:auto;
        scrollbar-width:none;
    }

    .aboutme-actions::-webkit-scrollbar{display:none}

    .aboutme-btn-main,
    .aboutme-btn-soft{
        flex:0 0 auto;
        white-space:nowrap;
    }

    .aboutme-boxes{
        grid-template-columns:1fr;
    }
}
