/* Shareable guide infographic */
.guide-story {
    display: grid;
    margin: 35px 0;
    overflow: hidden;
    border: 1px solid var(--guide-line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 80% 15%, rgb(245 181 68 / 12%), transparent 32%),
        linear-gradient(135deg, #f2fbfb 0%, #fff 58%, #fff9ed 100%);
    box-shadow: 0 18px 45px rgb(32 73 97 / 8%);
    grid-template-columns: minmax(155px, .68fr) minmax(0, 1.32fr);
}

.guide-story-preview {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #dff4f3;
}

.guide-story-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.guide-story-copy {
    display: flex;
    padding: clamp(26px, 4vw, 46px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.guide-story-copy h2 {
    max-width: 520px;
    margin: 7px 0 12px;
    color: #183a59;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.guide-story-copy > p:not(.guide-eyebrow, .guide-story-status) {
    max-width: 540px;
    margin: 0;
    color: #587187;
    font-size: .76rem;
    line-height: 1.7;
}

.guide-story-actions {
    display: flex;
    margin-top: 22px;
    flex-wrap: wrap;
    gap: 9px;
}

.guide-story-actions .button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.guide-story-actions svg {
    width: 15px;
    height: 15px;
}

.guide-story-actions button:disabled {
    cursor: wait;
    opacity: .68;
}

.guide-story-status {
    min-height: 1.4em;
    margin: 10px 0 0;
    color: #477083;
    font-size: .58rem;
}

.guide-story-copy small {
    color: #7a8d9c;
    font-size: .53rem;
}

@media (max-width: 760px) {
    .guide-story {
        grid-template-columns: 1fr;
    }

    .guide-story-preview {
        min-height: 520px;
    }

    .guide-story-copy {
        padding: 28px 22px 30px;
    }

    .guide-story-actions,
    .guide-story-actions .button {
        width: 100%;
    }
}
