.takeover-card {
    width: 100%;
    max-width: 400px;
    border-radius: 6px;
    overflow: hidden;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol";
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    background: #000;
    border: 2px solid #1e1e1d;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.takeover-card-header {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
}

.takeover-card-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.takeover-card-price-value {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.takeover-card-price-currency {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0.95;
}

.takeover-card-band {
    text-align: center;
}

.takeover-card-body {
    background: transparent;
}

.takeover-card-excerpt {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
    line-height: 1.3;
}

.takeover-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.takeover-card-features li {
    padding: 6px 0;
    font-size: 14px;
    display: inline-flex;
    line-height: 1.2;
    align-items: baseline;
}

.takeover-card-features li:before {
    content: "";
    background-color: #be461f;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 8px;
}

.takeover-card-footer {
    text-align: center;
}

.takeover-card-footer:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #be461f;
    margin-bottom: 15px;
}

.takeover-card-button {
    display: block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.12s ease;
}

.takeover-card-button:hover,
.takeover-card-button:focus {
    background-color: #9e3b18;
    color: #ffffff;
}
