/* Kalejdo Support Navigator */
.kl-sup-nav {
    max-width: 760px;
    margin: 32px auto;
    font-family: inherit;
}

/* Service cards grid */
.kl-sup-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.kl-sup-svc-card {
    background: #fff;
    border: 2px solid #e0e4ea;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kl-sup-svc-card:hover,
.kl-sup-svc-card:focus {
    border-color: #018c45;
    box-shadow: 0 2px 12px rgba(1, 140, 69, 0.15);
    outline: none;
}

.kl-sup-svc-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.kl-sup-svc-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

/* Issue list */
.kl-sup-issues {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.kl-sup-issues li {
    padding: 12px 16px;
    border: 1px solid #e0e4ea;
    border-radius: 8px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.93rem;
    color: #222;
    transition: background 0.15s, border-color 0.15s;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 600px) {
    .kl-sup-issues {
        grid-template-columns: 1fr;
    }
}

.kl-sup-issues li::before {
    content: '→';
    color: #018c45;
    font-weight: 700;
    flex-shrink: 0;
}

.kl-sup-issues li:hover {
    background: #f0faf5;
    border-color: #b8dfc8;
}

/* Guide card */
.kl-sup-guide {
    background: #f8fbf9;
    border: 1px solid #c8e6d4;
    border-radius: 12px;
    padding: 24px;
    margin-top: 8px;
}

.kl-sup-guide h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #005a2b;
    margin: 0 0 16px;
}

.kl-sup-guide ol {
    margin: 0 0 20px;
    padding-left: 22px;
    font-size: 0.93rem;
    line-height: 1.75;
    color: #333;
}

.kl-sup-guide ol li {
    margin-bottom: 4px;
}

.kl-sup-guide-cta {
    font-size: 0.88rem;
    color: #666;
    border-top: 1px solid #d8e8dd;
    padding-top: 16px;
    margin-top: 4px;
}

.kl-sup-guide-cta a {
    color: #018c45;
    font-weight: 700;
    text-decoration: none;
}

.kl-sup-guide-cta a:hover {
    text-decoration: underline;
}

/* Back button */
.kl-sup-back {
    background: none;
    border: none;
    color: #018c45;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
}

.kl-sup-back:hover {
    text-decoration: underline;
}

/* Empty state */
.kl-sup-empty {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    padding: 12px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .kl-sup-services {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 360px) {
    .kl-sup-services {
        grid-template-columns: 1fr;
    }
}

/* Ensure bottom padding below button when guide card stacks on mobile */
@media (max-width: 600px) {
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
        padding-bottom: 28px !important;
    }
}
