/* =============================================================================
   SINGLE ANUNT
============================================================================= */

.morteni-single-anunt-page {
    position: relative;
    z-index: 10;
    padding: 110px 0 80px;
    background: transparent;
}

.morteni-single-anunt-card {
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    padding: 56px;
}

.morteni-single-anunt-header {
    margin-bottom: 34px;
}

.morteni-single-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: #fff4e5;
    color: #9a5b00;
    border-left: 4px solid #e0a100;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.morteni-single-anunt-title {
    margin: 0 0 20px;
    font-size: 44px;
    line-height: 1.15;
    color: #1d3557;
    font-weight: 700;
}

.morteni-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    font-size: 14px;
    color: #4b5563;
}

.morteni-single-meta-item {
    line-height: 1.5;
}

.morteni-single-featured-image {
    margin-bottom: 34px;
}

.morteni-single-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.morteni-single-section {
    margin-bottom: 36px;
}

.morteni-single-section:last-child {
    margin-bottom: 0;
}

.morteni-single-section-title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.25;
    color: #1d3557;
    font-weight: 700;
}

.morteni-single-description,
.morteni-single-content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.morteni-single-content p:last-child,
.morteni-single-description p:last-child {
    margin-bottom: 0;
}

.morteni-single-documents {
    display: grid;
    gap: 14px;
}

.morteni-single-document {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid #dbe4ee;
    border-radius: 8px;
    text-decoration: none;
    background: #f9fbfd;
    transition: all 0.2s ease;
}

.morteni-single-document:hover,
.morteni-single-document:focus {
    border-color: #bfd3e6;
    background: #f3f8fc;
    text-decoration: none;
}

.morteni-single-document-icon {
    flex: 0 0 auto;
    min-width: 58px;
    padding: 8px 10px;
    border-radius: 6px;
    background: #1d4f91;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
}

.morteni-single-document-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.morteni-single-document-title {
    color: #1d3557;
    font-size: 16px;
    font-weight: 700;
}

.morteni-single-document-link {
    color: #6b7280;
    font-size: 13px;
}

.morteni-single-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.morteni-single-gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .morteni-single-anunt-page {
        padding: 80px 0 60px;
    }

    .morteni-single-anunt-card {
        padding: 36px 28px;
    }

    .morteni-single-anunt-title {
        font-size: 34px;
    }

    .morteni-single-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .morteni-single-anunt-page {
        padding: 36px 0 40px;
    }

    .morteni-single-anunt-card {
        width: calc(100% - 28px);
        padding: 24px 18px;
    }

    .morteni-single-anunt-title {
        font-size: 28px;
    }

    .morteni-single-description,
    .morteni-single-content {
        font-size: 16px;
    }

    .morteni-single-gallery {
        grid-template-columns: 1fr;
    }

    .morteni-single-gallery-item img {
        height: 200px;
    }
}