.videos-page .top-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 15rem;
    padding: var(--wp--custom--spacing--plus-2) 0 var(--wp--custom--spacing--plus-4);
    border-bottom: 1px solid var(--wp--preset--color--grey-tint-4);
}

.videos-page .top-content .image {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 55%;
    height: 100%;
}

.videos-page .top-content .image img {
    height: 100%;
    object-fit: contain;
}

.videos-page .top-content .subtitle {
    margin-bottom: var(--wp--custom--spacing--plus-2);
    color: var(--wp--preset--color--light-blue);
}

.videos-page .top-content .text {
    max-width: 50rem;
    font-size: var(--wp--preset--font-size--plus-1);
}

.videos-page .top-content .subtitle a {
    color: var(--wp--preset--color--light-blue);
}

.videos-page .top-content h1 {
    font-size: var(--wp--preset--font-size--plus-2);
}

.videos-page .main-title {
    margin: var(--wp--custom--spacing--plus-3) auto 0;
    font-size: var(--wp--preset--font-size--plus-1);
    color: var(--wp--preset--color--dark-blue);
    text-align: center;
}

.videos-page .main-description {
    max-width: 50rem;
    margin: 0 auto;
    margin-top: var(--wp--custom--spacing--plus-2);
    margin-bottom: var(--wp--custom--spacing--plus-5);
    text-align: center;
}

.videos-page .video .video-content {
    border: 0;
    height: 0;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.videos-page .video .video-content iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.videos-page .video figcaption {
    padding: var(--wp--custom--spacing--plus-1) var(--wp--custom--spacing--base);
    background-color: var(--wp--preset--color--dark-grey);
    color: var(--wp--preset--color--white);
}

.videos-page .video figcaption strong {
    color: var(--wp--preset--color--orange);
}

.videos-page .latest-list {
    display: flex;
    flex-direction: column;
    gap: var(--wp--custom--spacing--plus-2);
    padding-bottom: var(--wp--custom--spacing--plus-2);
    margin-top: var(--wp--custom--spacing--plus-3);
}

.videos-page .latest-list li {
    background-color: var(--wp--preset--color--grey-tint-2);
}

.videos-page .latest-list li .time {
    min-height: 1em;
    padding: .5em;
    font-size: var(--wp--preset--font-size--base);
    background-color: var(--wp--preset--color--grey-tint-4);
}

.videos-page .latest-list li .content {
    position: relative;
    display: grid;
    gap: var(--wp--custom--spacing--base);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1em 3.5em 1em .5em;
}

.videos-page .latest-list li .content h3 {
    padding-right: 3rem;
    margin-bottom: var(--wp--custom--spacing--base);
    font-size: var(--wp--preset--font-size--plus-1);
    color: var(--wp--preset--color--dark-blue);
}

.videos-page .latest-list li .content .left .text {
    max-width: 50rem;
    margin-bottom: var(--wp--custom--spacing--plus-2);
}

.videos-page .latest-list li .content .left .border-btn a {
    display: inline-block;
    width: auto;
    min-width: 10em;
    padding: .25em 2em;
    border: 1px solid var(--wp--preset--color--mid-grey);
    border-radius: .4em;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    font-weight: 100;
    transition: background .2s;
    text-decoration: none;
    color: var(--wp--preset--color--mid-grey);
}

.videos-page .latest-list li .content .image {
    border: 0;
    cursor: pointer;
    height: 0;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.videos-page .latest-list li .content .image a {
    height: 100%;
    left: 0;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
}

.videos-page .latest-list li .content .image a img {
    width: 100%;
    height: 100%;
}

.videos-page .latest-list li .content .image a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 50px;
    height: 32px;
    background: #cd201f;
    border-radius: 7px;
}

.videos-page .latest-list li .content .image a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 0;
    height: 0;
    margin-left: 2px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 7px 0 7px 14px;
}

.videos-page .pagination {
    display: flex;
    align-items: center;
    gap: .5em;
    padding-bottom: var(--wp--custom--spacing--plus-2);
}

.videos-page .pagination span {
    position: relative;
    display: block;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 9999em;
    text-decoration: none;
    transition: background .2s;
    background: var(--wp--preset--color--light-green);
    color: var(--wp--preset--color--white);
}

.videos-page .pagination span a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 9999em;
    text-decoration: none;
    color: #fff;
}

.videos-page .pagination .switch-btn {
    display: flex;
    gap: .5em;
    margin-left: auto;
}

.pagination .switch-btn span:first-child::after,
.videos-page .pagination .switch-btn span:last-child::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    margin-left: auto;
    transform: translate(-45%, -50%) scaleX(1);
    background-image: url('../images/download.svg');
}

.videos-page .pagination .switch-btn span:first-child::after {
    transform: translate(-45%, -50%) scaleX(1) rotate(180deg);
}