/*about*/
main.about-cont {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    /* background-color: rgba(255,0,0,0.2); */
    min-height: calc(100vh - var(--nav-h) - 40px);
    max-width: 1200px;
    /* display: flex; */
    align-items: flex-start;
    justify-content: center;
    padding: 60px 60px 80px;
}
.showcase-info{
    font-family: "DM Sans", sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    padding-bottom: 28px;
}
.showcase-div{
    /* background-color: rgba(255, 0, 0, 0.2); */
    display: flex;
    align-items: flex-start;
    justify-content: center;;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}
.showcase-img{
    border-radius: 10px;
    max-height: 32vh;
    width: 32vh;
    margin-left: 16px;
    margin-right: 16px;
}
@media (orientation: portrait){
    .showcase-img{
        max-height: 32vw;
        width: 32vw;
    }

}
.about-card {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 48px 48px;
    margin-bottom: 16px;
    box-shadow:
        0 0 0 1px rgba(123, 140, 222, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.about-card h1 {
    font-family: "DM Sans", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.about-card > p {
    font-family: "DM Sans", sans-serif;
    font-size: 0.97rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 28px;
}

.about-section {
    margin-bottom: 28px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-section ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-section ul li {
    font-family: "DM Sans", sans-serif;
    font-size: 0.93rem;
    color: var(--muted);
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    display: list-item;
}

@media (max-width: 600px) {
    .about-card {
        padding: 32px 22px 36px;
    }
    .about-card h1 {
        font-size: 1.5rem;
    }
}
