.wdt-a9432f6f-wrap {
    position: relative;
}

/* ── Dropdown Bar ── */
.wdt-a9432f6f-dropdown {
    position: relative;
    z-index: 10;
}

.wdt-a9432f6f-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: box-shadow 0.2s ease;
}

.wdt-a9432f6f-bar:focus-visible {
    outline: 2px solid #088080;
    outline-offset: 2px;
}

.wdt-a9432f6f-bar-label {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.wdt-a9432f6f-prefix {
    font-weight: 300;
}

.wdt-a9432f6f-bold {
    font-weight: 700;
}

.wdt-a9432f6f-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.wdt-a9432f6f-arrow svg {
    display: block;
    transition: transform 0.3s ease;
}

.wdt-a9432f6f-dropdown.wdt-a9432f6f-open .wdt-a9432f6f-arrow svg {
    transform: rotate(180deg);
}

/* ── Options List ── */
.wdt-a9432f6f-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    display: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 20;
}

.wdt-a9432f6f-dropdown.wdt-a9432f6f-open .wdt-a9432f6f-options {
    display: block;
}

.wdt-a9432f6f-option {
    padding: 14px 30px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.wdt-a9432f6f-option.wdt-a9432f6f-active {
    font-weight: 600;
}

/* ── Content Panels ── */
.wdt-a9432f6f-content {
    display: none;
}

.wdt-a9432f6f-content.wdt-a9432f6f-visible {
    display: block;
}

.wdt-a9432f6f-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* ── Cards ── */
.wdt-a9432f6f-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wdt-a9432f6f-card-img {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.wdt-a9432f6f-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wdt-a9432f6f-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wdt-a9432f6f-card-title {
    margin: 0;
    line-height: 1.3;
}

.wdt-a9432f6f-card-desc {
    margin: 0;
    line-height: 1.6;
}

.wdt-a9432f6f-card-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    margin-top: 4px;
    transition: color 0.2s ease;
}

.wdt-a9432f6f-card-link:hover {
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .wdt-a9432f6f-grid {
        grid-template-columns: 1fr;
    }

    .wdt-a9432f6f-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
