/* ===== Two Column Feature ===== */
.tcf {
    margin-bottom: 4rem;
}

.tcf__container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.tcf__grid {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
}

@media (min-width: 768px) {
    .tcf__grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.tcf__column {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .tcf__column {
        grid-column: span 6;
    }
}

/* Header */
.tcf__header {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tcf__header {
        margin-bottom: 1.5rem;
    }
}

.tcf__title {
    order: 1;
    margin: 0;
    line-height: 1.2;
}

.tcf__badge {
    width: fit-content;
    border-bottom-right-radius: 1.25rem;
    border-top-left-radius: 1.25rem;
    background-color: var(--dark-pink);
    padding: 0.5rem 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--grey-blue);
}

/* Prose */
.tcf__prose {
    max-width: none;
}

.tcf__prose p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: 0;
}

.tcf__prose strong {
    color: var(--text-dark);
}

.tcf__prose ul {
    list-style-image: url(/checkmark.png);
    font-size: 1.125rem;
}

/* Buttons */
.tcf__buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 640px) {
    .tcf__buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .tcf__buttons {
        gap: 1.5rem;
    }
}

/* Button shared */
.tcf__btn {
    z-index: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    appearance: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    min-width: 5rem;
    gap: 0.5rem;
    transition: background-color 0.3s, transform 0.2s, opacity 0.2s;
    padding: 0.75rem 0.75rem 0.75rem 2rem;
    height: 3.75rem;
    font-size: 1rem;
    font-weight: 800;
    -webkit-font-smoothing: antialiased;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
}

.tcf__btn:active {
    transform: scale(0.97);
}

.tcf__btn:focus-visible {
    z-index: 10;
    outline: 1px dashed;
    outline-offset: 4px;
}

.tcf__btn--pink {
    background-color: var(--dark-pink);
    color: var(--white);
}

.tcf__btn--pink:hover {
    background-color: var(--mid-pink);
}

.tcf__btn--pink:focus-visible {
    outline-color: var(--dark-pink);
}

.tcf__btn--pink .tcf__btn-icon {
    background-color: var(--mid-pink);
}

.tcf__btn--pink:hover .tcf__btn-icon {
    background-color: var(--dark-pink);
}

.tcf__btn--grey-blue {
    background-color: #eff8f8;
    color: var(--text-dark);
}

.tcf__btn--grey-blue:focus-visible {
    outline-color: var(--color-blue-100);
}

.tcf__btn--grey-blue .tcf__btn-icon {
    background-color: var(--color-blue-100);
}

.tcf__btn-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: break-spaces;
}

.tcf__btn-icon {
    display: inline-flex;
    height: 2.25rem;
    width: 2.25rem;
    flex: none;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    transition: background-color 0.3s, transform 0.3s;
}

.tcf__btn:hover .tcf__btn-icon {
    transform: translateX(0.25rem);
}

.tcf__btn-icon svg {
    height: 1rem;
    width: 1rem;
    fill: var(--white);
}
