/* ============================================================================!

                    PAGES

============================================================================= */
.page-subheader {
    padding: 50px 0 30px;
    background-color: #f2f2f2;
}

.page-subheader .container {
    position: relative;
    padding: 0;
    margin: auto;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.page-subheader .title {
    margin: 0;
    font-size: 30px;
    padding: 10px 0;
    font-weight: 500;
}

.page-subheader .breadcrumbs #crumbs {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-subheader .breadcrumbs a {
    text-decoration: none;
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-content {
    font-size: 16px;
    margin: 0 auto;
    padding: 50px 0;
    min-height: 300px;
    background-color: #f2f2f2;
}

.page-content ul {
    list-style: revert;
}

/* ============================================================================!

						404

============================================================================= */
.error404-header {
    max-width: 100%;
    background-color: #f2f2f2;
}

.error404-header .container {
    max-width: 1200px;
}

.error404-header .container .title {
    height: 400px;
    display: flex;
    align-items: center;
    background: url("/wp-content/themes/spiprotein/assets/images/404.png") no-repeat center right;
}

.error404-content {
    text-align: center;
}

.error404-content a {
    padding: 0;
    text-decoration: none;
}

/* ============================================================================!

						CATEGORY

============================================================================= */
.categoria-lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.categoria-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 200ms linear;
}

.categoria-item:hover {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
}

.categoria-item a {
    display: block;
    color: #000;
    text-decoration: none;
    transition: all 200ms linear;
}

.categoria-item a:hover {
    color: #ff4d00;
}

.categoria-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.categoria-titulo {
    padding: 15px 20px;
    font-size: 18px;
}

/* ============================================================================!

						SINGLE

============================================================================= */
.single-capa {
    width: 100%;
    margin-bottom: 30px;
}

/* ============================================================================!

						MATRICULE-SE

============================================================================= */
.countdown-redirect {
    display: flex;
    justify-content: center;
    text-align: center;
}

.countdown-redirect strong {
    color: #ff6f00;
}

.buttons-redirect {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {

    /* ========================================================================!

						404

============================================================================= */
    .error404-header .container .title {
        flex-flow: column wrap;
        background-position: center;
        justify-content: end;
        padding-top: 400px;
    }
}