﻿.custom-relative {
    position: relative;
}

.custom-link-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
/* ===============================
   HERITAGE LIST GRID LAYOUT
================================ */

.grid-heritage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
    .grid-heritage {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .grid-heritage {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ===============================
   HERITAGE ITEM
================================ */

.heritage-item {
    width: 100%;
    background: #ffffff;
}

    /* ===============================
   IMAGE AREA
================================ */

    .heritage-item .uk-cover-container {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

    .heritage-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
    }

    /* Hover zoom image */
    .heritage-item:hover img {
        transform: scale(1.05);
    }

    /* Lightbox icon center */
    .heritage-item .uk-position-center {
        pointer-events: none;
    }

/* ===============================
   TITLE (MAX 2 LINES)
================================ */

.heritage-title {
    margin-top: 8px;
    padding: 0 2px;
    font-size: 15px;
    font-weight: 500;
    color: #2D2D2D;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.4em * 2);
}

/* ===============================
   OPTIONAL: HOVER TITLE COLOR
================================ */

.heritage-item:hover .heritage-title {
    color: #1a1a1a;
}

/* ===============================
   OPTIONAL: REMOVE DEFAULT UK CANVAS GAP
================================ */

.heritage-item canvas {
    display: block;
}

/* ===============================
   ENSURE LIGHTBOX LINK FULL COVER
================================ */

.heritage-item .uk-position-cover {
    cursor: pointer;
}

.tw-flex {
   display: flex;
}

.tw-items-center {
    align-items: center;
}

.show.dropdown-menu.custom-lang-select {
    min-width: auto;
}

.tw-ml-1 {
    margin-left: 4px;
}

.tw-uppercase {
    text-transform: uppercase;
}

.tw-h-24px {
    height: 24px;
}

.tw-h-48px {
    height: 48px;
}

.tw-line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tw-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tw-rounded-4px {
    border-radius: 4px;
}

.tw-pr-2 {
    padding-right: 8px;
}