.yt-tile {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-decoration: none;
    box-sizing: border-box;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #4D4D4D;
    background-color: #1F1F1F;
    color: #ffffff;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.yt-tile * {
    color: inherit;
}

.yt-tile:focus-visible {
    outline: 2px solid #FF3200;
    outline-offset: 2px;
}

.yt-tile__media-link {
    display: block;
    text-decoration: none;
}

.yt-tile__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
}

.yt-tile__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.yt-tile__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.yt-tile__title {
    margin: 0;
    font-family: var(--wp--preset--font-family--gilroy);
}
    

.yt-tile__title-link {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.yt-tile:hover {
    border-color: var(--wp--preset--color--orange);
}

.yt-tile:hover .yt-tile__title-link {
    color: var(--wp--preset--color--orange);
}


.yt-tile__excerpt {
    font-family: var(--wp--preset--font-family--archivo);
    font-size: var(--wp--preset--font-size--text);
    line-height: 1.6;
    color: #E7E7E7;
}

.yt-tile__excerpt > :first-child { margin-top: 0; }
.yt-tile__excerpt > :last-child { margin-bottom: 0; }

