.lsv2-wrapper {
    max-width: 911px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
    padding: 40px 36px 32px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "header  header"
        "student guest"
        "info-s  info-s"
        "info-g  info-g";
    gap: 16px;
}
.lsv2-header {
    grid-area: header;
    text-align: center;
    margin-bottom: 12px;
}
.lsv2-welcome {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #9e9e9e;
    margin-bottom: 8px;
}
.lsv2-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.lsv2-card {
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}
.lsv2-card--student {
    grid-area: student;
    background: #FFFDE7;
    border: 2px solid #F0B400;
    transition: background 0.2s, border-color 0.2s;
}
.lsv2-card--guest {
    grid-area: guest;
    background: #fff;
    border: 2px solid #e0e0e0;
    transition: background 0.2s, border-color 0.2s;
}
.lsv2-card--guest:hover {
    background: #FFFDE7;
    border: 2px solid #F0B400;
}
.lsv2-card--guest:hover .lsv2-btn--outline {
    background: #F0B400 !important;
    color: #fff !important;
    border-color: #F0B400;
}
.lsv2-wrapper:has(.lsv2-card--guest:hover) .lsv2-card--student {
    background: #fff;
    border: 2px solid #e0e0e0;
}
.lsv2-wrapper:has(.lsv2-card--guest:hover) .lsv2-card--student .lsv2-btn--primary {
    background: #fff !important;
    color: #1a1a1a !important;
    border: 2px solid #ccc;
}
.lsv2-wrapper:has(.lsv2-card--guest:hover) .lsv2-card--student .lsv2-icon--student {
    background: #eeeeee;
}
.lsv2-wrapper:has(.lsv2-card--guest:hover) .lsv2-card--student .lsv2-icon--student svg path {
    fill: #888;
}
.lsv2-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lsv2-icon--student { background: #F0B400; transition: background 0.2s; }
.lsv2-icon--guest   { background: #eeeeee; transition: background 0.2s; }
.lsv2-card--guest:hover .lsv2-icon--guest { background: #F0B400; }
.lsv2-card--guest:hover .lsv2-icon--guest svg path { fill: #fff; transition: fill 0.2s; }
.lsv2-card-title {
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    color: #1a1a1a;
    margin: 5px 0 0;
}
.lsv2-card-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px 0;
    flex: 1;
    line-height: 1.5;
}
.lsv2-btn {
    display: block;
    width: 100%;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    box-sizing: border-box;
    margin-top: auto;
    min-width: unset !important;
}
.lsv2-btn--primary {
    background: #F0B400 !important;
    color: #fff !important;
    border: 2px solid #F0B400;
}
.lsv2-btn--primary:hover {
    background: #d4a000 !important;
    color: #fff !important;
}
.lsv2-btn--outline {
    background: #fff !important;
    color: #1a1a1a !important;
    border: 2px solid #ccc;
}
.lsv2-btn--outline:hover {
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
}
.lsv2-info {
    border: 1.5px solid #F0B400;
    border-left: 4px solid #F0B400;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
}
.lsv2-info--student { grid-area: info-s; }
.lsv2-info--guest   { grid-area: info-g; }
.lsv2-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}
.lsv2-info-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.lsv2-info-text {
    font-size: 14px;
    color: #555;
    margin: 0 0 0 -30px;
    line-height: 1.5;
}
.lsv2-info-text a { color: #1a73e8; }
@media (max-width: 600px) {
    .lsv2-wrapper {
        padding: 24px 16px 20px;
        margin: 20px auto;
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "student"
            "info-s"
            "guest"
            "info-g";
    }
    .lsv2-title { font-size: 20px; }
}
