/**
 * Gremaza WPB Addons - Image Card Styles
 * Author: Marsel Preci
 */

/* ============================================
   Image Card Styles
   ============================================ */

.gremaza-image-card {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
}

.gremaza-image-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border: none;
    box-shadow: none;
}

.gremaza-image-card__link:hover,
.gremaza-image-card__link:focus {
    text-decoration: none;
    color: inherit;
}

.gremaza-image-card__image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
}

.gremaza-image-card:hover .gremaza-image-card__image {
    transform: scale(1.03);
}

.gremaza-image-card__content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.gremaza-image-card__title {
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    background: transparent;
    border: none;
    box-shadow: none;
}

.gremaza-image-card__desc {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .gremaza-image-card__title {
        font-size: 22px;
    }

    .gremaza-image-card__desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gremaza-image-card__title {
        font-size: 20px;
    }

    .gremaza-image-card__desc {
        font-size: 13px;
    }
}
