/* Footer CTA Block Frontend Styles */
.wp-block-crates-footer-cta {
    background-color: #0F2922; /* bg-[#182320] - using theme card background */
    padding: 4rem 0; /* py-16 */
    margin-top: 4rem; /* mt-16 */
    margin-bottom: 0;
}

.crates-footer-cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .crates-footer-cta__container {
        padding: 0 1.5rem;
    }
}

.crates-footer-cta__title {
    font-size: 1.875rem; /* text-2xl */
    font-weight: 700; /* font-bold */
    margin-bottom: 1rem; /* mb-4 */
    color: #ffffff;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .crates-footer-cta__title {
        font-size: 2.25rem; /* md:text-3xl */
    }
}

.crates-footer-cta__description {
    color: #D1D5DB; /* text-gray-300 */
    max-width: 32rem; /* max-w-2xl */
    margin: 0 auto 2rem auto; /* mx-auto mb-8 */
    font-size: 1rem;
    line-height: 1.5;
}

.crates-footer-cta__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem; /* gap-16 */
    margin-bottom: 2rem; /* mb-8 */
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .crates-footer-cta__stats {
        gap: 2rem;
        flex-direction: column;
    }
}

.crates-footer-cta__stat {
    text-align: center;
}

.crates-footer-cta__stat-value {
    font-size: 2.25rem; /* text-3xl */
    font-weight: 700; /* font-bold */
    color: #F39A76; /* text-[#F47458] - using theme orange */
    line-height: 1;
    margin-bottom: 0.25rem;
}

.crates-footer-cta__stat-label {
    font-size: 0.875rem; /* text-sm */
    color: #9CA3AF; /* text-gray-400 */
}

.crates-footer-cta__button {
    background-color: #F39A76; /* bg-[#F47458] - using theme orange */
    color: #ffffff; /* text-white */
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    border-radius: 0.375rem; /* rounded-md */
    border: none;
    font-weight: 500; /* font-medium */
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease-in-out;
}

.crates-footer-cta__button:hover {
    background-color: #f38a5e; /* hover:bg-[#E36347] - using theme orange hover */
    color: #ffffff;
    text-decoration: none;
}