﻿@media (min-width: 576px) {
    .content-tiles-grid .swiper-slide {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .content-tiles-grid .swiper-slide {
        width: 33.33333333%;
    }
}

.dg-tile__image-wrapper {
    position: relative;
    max-height: 370px;
    aspect-ratio: 16/9;
    border-radius: var(--radius, 0.313rem);
}

    .dg-tile__image-wrapper .tile-dt {
        position: absolute;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-wrap: wrap;
        background-color: var(--teal-hex, #2eb5b2);
        font-size: 12px;
        min-width: 150px;
        min-height: 12px;
        color: var(--white-hex, #ffffff);
        padding: 5px 20px;
        top: -2px;
        left: 16px;
        z-index: 1;
        border-bottom-left-radius: var(--radius, 0.313rem) !important;
        border-bottom-right-radius: var(--radius, 0.313rem) !important;
    }

.dg-tile__image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.dg-tile__head img {
    position: relative;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: var(--radius, 0.313rem);
}

.dg-tile__body {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
    margin: -15px 15px 0px 15px;
    padding: 25px 30px 25px 30px;
    background: var(--white-hex, #ffffff);
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
    border-radius: var(--radius, 0.313rem);
    box-shadow: var(--card-shadow);
    z-index: 1;
}

.dg-tile__details {
    flex: 1;
}

.dg-tile__title {
    color: var(--skobeloff-hex, #006e69);
    text-align: left;
    max-height: 60px;
    overflow: hidden;
}

.dg-tile {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.dg-tile__clickable__head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dg-tile__head {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius, 0.313rem);
}

.dg-tile:hover .dg-tile__body {
    -webkit-box-shadow: var(--card-shadow-hover);
    box-shadow: var(--card-shadow-hover);
}

.dg-tile:hover .dg-tile__title {
    color: var(--navy-hex, #08313f);
}

.dg-tile .dg-tile__head .dg-tile__image-wrapper img {
    display: block;
    width: 100%;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease
}

.dg-tile:hover .dg-tile__head .dg-tile__clickable__head:after {
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear
}

.dg-tile .dg-tile__head .dg-tile__clickable__head:after {
    background: rgba(var(--skobeloff-rgb, 0, 110, 105), 0.5);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
}


.ie .mygolf .dg-tile__title {
    color: var(--skobeloff-hex, #006e69);
}

.dg-tile--big .dg-tile__title {
    font-size: 17px;
}

.dg-tile__description {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 5px;
    max-height: 60px;
    overflow: hidden;
    margin-bottom: 1rem !important;
}

.dg-tile--small .dg-tile__description {
    font-size: 14px;
    line-height: 1.2;
}

.ie .no-ellipsis .dg-tile__description {
    -webkit-line-clamp: unset;
    overflow: visible;
}

@media (min-width: 992px) {
    .dg-tile--big .dg-tile__title {
        font-size: 25px;
    }

    .dg-tile__title {
        font-size: 20px;
    }
}