﻿body {
    font-family: 'Nunito Sans', sans-serif;
    background: #f0ecfa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-card {
    background: linear-gradient(135deg, #e8e0f8 0%, #ede7fb 60%, #dfd6f5 100%);
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
    box-shadow: 0 12px 40px rgba(70,30,130,.18);
    padding: 0;
}

/* Decorative blobs */
.blob-tl {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(170,140,220,.25);
    pointer-events: none;
}

.blob-tr {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 30px solid rgba(170,140,220,.18);
    pointer-events: none;
}

.blob-br {
    position: absolute;
    bottom: -40px;
    right: 280px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 22px solid rgba(170,140,220,.15);
    pointer-events: none;
}

/* Logo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 28px 10px;
    position: relative;
    z-index: 2;
}

.logo-v-shape {
    width: 54px;
    height: 54px;
}

.logo-text-block .brand-name {
    font-size: .78rem;
    font-weight: 800;
    color: #4a1e8a;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.1;
}

.logo-text-block .brand-tag {
    font-size: .6rem;
    font-weight: 600;
    color: #8a68c0;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* Main body */
.slide-body {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: 28px 28px 28px 28px;
    position: relative;
    z-index: 2;
}

/* Left column */
.left-col {
    flex: 1;
    min-width: 0;
    padding-right: 16px;
}

.dr-name {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    color: #604696;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 18px;
    margin-top: 4px;
}

.info-box {
    background: rgba(255,255,255,.55);
    border-radius: 14px;
    padding: 18px 20px;
    backdrop-filter: blur(6px);
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

.bullet {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #5a20a0;
    margin-top: 6px;
}

.info-text {
    font-size: .9rem;
    font-weight: 700;
    color: #2d0a60;
    line-height: 1.55;
}

    .info-text .sub {
        font-weight: 400;
        color: #4a2a80;
    }

/* Right column – photo */
.right-col {
    flex-shrink: 0;
    width: clamp(220px, 32%, 340px);
    position: relative;
}

.photo-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #c8b8e8;
    box-shadow: 4px 6px 20px rgba(70,30,130,.22);
}

    .photo-wrapper img {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
        max-height: 420px;
    }

/* Responsive */
@media (max-width: 680px) {
    .slide-body {
        flex-direction: column;
        gap: 16px;
    }

    .right-col {
        width: 55%;
        margin: 0 auto;
    }

    .dr-name {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
        letter-spacing: -1px;
    }

    .left-col {
        padding-right: 0;
    }
}

@media (max-width: 420px) {
    .right-col {
        width: 80%;
    }
}
