.explore-cert-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2.5rem;
}

@media (max-width: 1024px) {
    .explore-cert-wrapper {
        padding: 3.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .explore-cert-wrapper {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .explore-cert-wrapper {
        padding: 2.5rem 1.25rem;
    }
}

.explore-cert-title {
    margin: 0;
    text-align: center;
}

.explore-cert-subtitle {
    margin: 0;
    text-align: center;
    max-width: 640px;
}

.explore-cert-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.explore-cert-separator {
    width: 90%;
    height: 0.5px;
    margin: 3rem 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.17) 20%,
        rgba(255, 255, 255, 0.50) 35%,
        rgba(255, 255, 255, 0.50) 65%,
        rgba(255, 255, 255, 0.17) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 50%,
        white 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 50%,
        white 90%,
        transparent 100%
    );
}

