.page-desc {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
}

.btn-pri--default {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border:none;
    color: white;
    cursor: pointer;
}

.btn-pri--default .play-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: cover;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='64px' height='64px' viewBox='-3 0 28 28' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' fill='%23ffffff'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'/%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cg id='SVGRepo_iconCarrier'%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='Icon-Set-Filled' sketch:type='MSLayerGroup' transform='translate(-419.000000, -571.000000)' fill='%23fff'%3E%3Cpath d='M440.415,583.554 L421.418,571.311 C420.291,570.704 419,570.767 419,572.946 L419,597.054 C419,599.046 420.385,599.36 421.418,598.689 L440.415,586.446 C441.197,585.647 441.197,584.353 440.415,583.554' id='play' sketch:type='MSShapeGroup'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.btn-pri--default .btn-content{
    min-width: 135px;
    text-align: left;
}

/* Horizontal card */
.card .swiper-button-prev,
.card .swiper-button-next {
    width: 16px;
}

.card .swiper-navigation-icon {
    color: #646363;
}

.card__link.-horizontal {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    border: 4px solid #000;
    padding: 10px;
}

.card__link.-horizontal .card__img {
    flex: 0 0 auto;
    margin: 0;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 215 / 161;
}

.card__link.-horizontal .card__img img,
.card__link.-horizontal .card__img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__link.-horizontal .card__content {
    flex-grow: 1;
    width: auto;
}

.card__link.-horizontal .card__para {
    margin-bottom: 14px;
}

.card__link.-horizontal .card__video-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card__link.-horizontal .btn-pri:first-child{
    margin-bottom: 0;
}

@media only screen and (min-width:576px) {
    .card__link.-horizontal {
        flex-direction: row;
        gap:30px;
        padding: 20px;
    }

    .card__link.-horizontal .card__img {
        max-width: 55%;
    }
}