/* Advisor Section Background */
#point1 {
    background: url("../../assets/images/lp-a/advisor_bg.webp") center / cover repeat-y;
    position: relative;
    z-index: 1;
}

/* アドバイザーリスト (Redesigned - Vertical Stack) */
/* アドバイザーリスト (Redesigned - Alternating) */
.advisor-list {
    display: grid;
    gap: 18.67vw;
    width: 100%;
    /* max-width: 600px; Remove or keep as safety cap, but strictly following responsive request */
    margin-top: 13.33vw;
}

.advisor-item {
    position: relative;
    width: 100%;
}

.advisor-frame-container {
    position: relative;
    width: 100%;
    /* Min height to accommodate photo */
}

.advisor-frame-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Stretch frame to fit content */
    z-index: 0;
}

.advisor-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    /* Center vertically */
    justify-content: space-between;
    padding: 4.25vw 5.33vw 3.25vw;
    gap: 2vw;
    min-height: 25vw;
    /* Ensure height */
}

.advisor-body--reverse {
    flex-direction: row-reverse;
}

/* Advisor Profile: Photo + Name */
.advisor-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25vw;
    /* Fixed width for profile column */
    flex-shrink: 0;
    position: relative;
}

.advisor-photo {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 1.33vw 1.33vw 4vw rgba(0, 0, 0, 0.35);
    border: none;
    margin-top: -24vw;
    /* Pull up to overlap frame top */
    margin-bottom: 1vw;
    position: relative;
    /* Relative to flow in flex col */
    background: transparent;
    /* Ensure no transparent artifacts */
    left: auto;
    /* Reset absolute left/right */
    right: auto;
    top: auto;
    transform: none;
}

/* Remove old specific photo positioning */
.advisor-photo--right {
    /* No longer needed as flex row-reverse handles it */
    transform: none;
    left: auto;
    right: auto;
}

.advisor-name {
    margin: 0;
    font-weight: 700;
    font-size: 4.7vw;
    color: var(--accent);
    text-align: center;
    line-height: 1.3;
    text-shadow: var(--text-shadow-sm);
}

.advisor-name span {
    display: block;
    font-size: 2.8vw;
    color: var(--muted);
    font-weight: normal;
}

/* Advisor Description: List */
.advisor-description {
    flex-grow: 1;
    text-align: left;
}

.advisor-description ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: 3vw;
    color: var(--text);
    line-height: 1.5;
}

.advisor-description li {
    margin-bottom: 1.6vw;
    position: relative;
    padding-left: 1rem;
}

.advisor-description li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}