.webinars-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);
}

.webinars-page .top-content .image {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 55%;
    height: 100%;
}

.webinars-page .top-content .image img {
    height: 100%;
    object-fit: contain;
}

.webinars-page .top-content .subtitle {
    margin-bottom: var(--wp--custom--spacing--plus-2);
    color: var(--wp--preset--color--light-blue);
}

.webinars-page .top-content .text {
    max-width: 50rem;
    font-size: var(--wp--preset--font-size--plus-1);
}

.webinars-page .top-content .subtitle a {
    color: var(--wp--preset--color--light-blue);
}

.webinars-page .top-content h1 {
    font-size: var(--wp--preset--font-size--plus-2);
}

.webinars-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;
}

.webinars-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);
}

.webinars-page .latest-list li {
    background-color: var(--wp--preset--color--grey-tint-2);
}

.webinars-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);
}

.webinars-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;
}

.webinars-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);
}

.webinars-page .latest-list li .content .left .text {
    max-width: 50rem;
    margin-bottom: var(--wp--custom--spacing--plus-2);
}

.webinars-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);
}


.webinars-page .latest-list li .content .image a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    border: 0;
    background: rgba(0, 0, 0, .1);
}

.webinars-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;
}

.webinars-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;
}

.webinars-page .latest-list li .content .image a>* {
    max-width: 100%;
}

.webinars-page .pagination {
    display: flex;
    align-items: center;
    gap: .5em;
    padding-bottom: var(--wp--custom--spacing--plus-2);
}

.webinars-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);
}

.webinars-page .pagination span a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 9999em;
    text-decoration: none;
    color: #fff;
}

.webinars-page .pagination .switch-btn {
    display: flex;
    gap: .5em;
    margin-left: auto;
}

.pagination .switch-btn span:first-child::after,
.webinars-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');
}

.webinars-page .pagination .switch-btn span:first-child::after {
    transform: translate(-45%, -50%) scaleX(1) rotate(180deg);
}