﻿.aiosSmwContainer {
    display: block;
    width: 100%;
}
.aiosSmwContainer_heading {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.aiosSmwContainer_heading--title {
    color: var(--smw-title, #000000);
}

.aiosSmwContainer_heading--title h2{
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 29px;
    line-height: 1;
}
.aiosSmwContainer_heading--collections {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}
.aiosSmwContainer_heading--platform a {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 33px;
    color: var(--smw-icon, #000);

    width: 80px;
    height: 80px;

    border: 1px solid #333333;
    border-color: var(--smw-icon, #AAAAAA);

    transition: var(--transition, all 150ms linear);
}
.aiosSmwContainer_heading--platform a:hover {
    color: var(--smw-icon-hover, #262626);
    border-color: var(--smw-icon-hover, #262626);
}
.aiosSmwContainer_heading--selections {
    /* max-width:  */
    display: flex;
    flex-direction: column;
}
.aiosSmwContainer_heading--selections button {
    appearance: none !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent;

    font-size: var(--button-font-size, 13px);
    font-weight: var(--button-font-weight, 500);
    color: var(--smw-button-text, #000000);
    line-height: 1.5;
    padding: var(--button-padding, 16px 20px);
    transition: var(--transition, all 150ms linear);
    text-transform: uppercase;
    text-align: right;
    text-align: center;
}
.aiosSmwContainer_heading--selections button.platform-active,
.aiosSmwContainer_heading--selections button:hover {
    background: var(--smw-button-background-hover, #000000);
    color: var(--smw-button-text-hover, #fff);
}

.aiosSmwContainer-content {
    margin-top: 40px;
}

.aiosSmwContainer-items {
    list-style: none !important;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.aiosSmwContainer-content__item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background: #F6F6F6;

}
.aiosSmwContainer-content__item--img {
    position: relative;
    overflow: hidden;
}
.aiosSmwContainer-content__item--img canvas,
.aiosSmwContainer-content__item--img video {
    display: block;
    width: 100%;
    height: auto;
}
.aiosSmwContainer-content__item--img canvas {
    background-size: cover;
    background-position: center;
}
.aiosSmwContainer-content__item--img video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.aiosSmwContainer-content__item--description {
    margin: 0 !important;
    padding: 0 0 !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.aiosSmwContainer-content__item--time {
    margin: 24px 0 0 !important;
    padding: 0 !important;
    font-weight: var(--subparagraph-font-weight, 400);
    font-size: var(--subparagraph-font-size, 14px);
    text-transform: var(--subparagraph-text-transform, uppercase);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.aiosSmwContainer-content__item--time  i {
    font-style: normal !important;
    font-size: 24px;
}
.aiosSmwContainer-content__item--link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
}
.aiosSmwContainer-content__item--link span {
    display: none;
}
 
@media only screen and (min-width: 744px) {
    .aiosSmwContainer_heading {
        flex-direction: row;
        justify-content: space-between;
    }
    .aiosSmwContainer_heading--title h2{
        font-size: 50px;
        text-align: left;
        padding: 0
    }
    .aiosSmwContainer_heading--selections {
        max-width: 332px;
        min-width: 332px;
    }

    .aiosSmwContainer-content__item--time{
        font-size: 14px;
    }
}

@media only screen and (min-width: 1024px) {


    .aiosSmwContainer_heading--title h2{
        padding: 0;
    }
    .aiosSmwContainer-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aiosSmwContainer-content__item--time  i {
        font-size: 32px;
    }
    
    
}

@media only screen and (min-width: 1280px) {

    .aiosSmwContainer-content__item--time {
        font-size: 18px;
    }

}