.home-guide-library {
    background: #f7f7f9;
    padding: 46px 0 42px;
}
.home-guide-library__head {
    align-items: flex-end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
}
.home-guide-library__head h2 {
    color: #2f2d38;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
}
.home-guide-library__head p {
    color: #6f6c79;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 650px;
}
.home-guide-library__all {
    color: #6351ce;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.home-guide-library__all:hover,
.home-guide-library__all:focus {
    color: #4432ae;
    text-decoration: underline;
}
.home-guide-library__group-title {
    color: #77727f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.home-guide-card {
    background: #fff;
    border: 1px solid #e7e5ed;
    border-radius: 12px;
    color: #34313e;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 172px;
    padding: 20px;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.home-guide-card:hover,
.home-guide-card:focus {
    border-color: #b9b0ef;
    box-shadow: 0 8px 22px rgba(49, 41, 93, .1);
    color: #34313e;
    text-decoration: none;
    transform: translateY(-2px);
}
.home-guide-card:focus-visible,
.home-guide-library__all:focus-visible {
    outline: 3px solid #f7b544;
    outline-offset: 3px;
}
.home-guide-card__top {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.home-guide-card__icon {
    align-items: center;
    background: #f0edff;
    border-radius: 999px;
    color: #6351ce;
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    width: 34px;
}
.home-guide-card__label {
    color: #77727f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.home-guide-card h3 {
    color: #2f2d38;
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 8px;
}
.home-guide-card p {
    color: #6f6c79;
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 16px;
}
.home-guide-card__cta {
    color: #6351ce;
    font-size: 12px;
    font-weight: 700;
    margin-top: auto;
}
.home-guide-library__deep-dives {
    border-top: 1px solid #dedbe7;
    margin-top: 12px;
    padding-top: 24px;
}
.home-guide-card--deep-dive {
    min-height: 150px;
}
.home-guide-card--deep-dive .home-guide-card__icon {
    background: #fff4e5;
    color: #b96e00;
}
@media (max-width: 767px) {
    .home-guide-library {
        padding: 34px 0 30px;
    }
    .home-guide-library__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    .home-guide-library__head h2 {
        font-size: 22px;
    }
    .home-guide-card,
    .home-guide-card--deep-dive {
        min-height: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .home-guide-card {
        transition: none;
    }
    .home-guide-card:hover,
    .home-guide-card:focus {
        transform: none;
    }
}
