/*
 * Cards Component
 * Project cards, apartment cards, and card-like UI elements
 */

/* =============================================================================
   Base Card Styles
   ============================================================================= */

.card {
        border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-bounce);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-invest-medium), var(--blue-invest-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover::before {
    opacity: 1;
}

/* =============================================================================
   Project Cards
   ============================================================================= */

.project-item {
        border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-bounce);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.project-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-invest-medium), var(--blue-invest-light));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.project-item:hover::before {
    opacity: 1;
}

.project-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.project-item a:hover {
    color: inherit;
    text-decoration: none;
}

.project-item-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    }

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.project-item:hover img {
    transform: scale(1.05);
}

.project-item h2 {
    padding: 1.25rem;
    margin: 0;
    font-size: var(--font-size-h3);
    color: var(--blue-invest-dark);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
}

/* Project Card Variants */
.project-card {
        border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.project-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    }

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, var(--background-light) 0%, var(--background-muted) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
}

.project-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-bold);
    color: var(--blue-invest-dark);
    margin-bottom: 0.75rem;
    line-height: var(--line-height-tight);
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: var(--line-height-base);
    flex-grow: 1;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--blue-invest-medium);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    align-self: flex-start;
}

.project-btn:hover {
    background: var(--blue-invest-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* =============================================================================
   Apartment Cards
   ============================================================================= */

.apartment-card {
        border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-bounce);
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.apartment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.apartment-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.apartment-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.apartment-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    }

.apartment-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.apartment-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.apartment-image.active {
    opacity: 1;
}

.apartment-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 90, 156, 0.9) 0%, rgba(91, 155, 213, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.apartment-card:hover .apartment-image-overlay {
    opacity: 1;
}

.apartment-overlay-content {
    text-align: center;
    color: var(--text-light);
}

.view-details-text {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apartment-placeholder {
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, var(--background-light) 0%, var(--background-muted) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
}

.apartment-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    }

.apartment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.apartment-title {
    font-size: 1.125rem;
    color: var(--blue-invest-dark);
    margin: 0;
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    flex-grow: 1;
}

.apartment-status {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.6875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-available {
    background-color: #28a745;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.status-reserved {
    background-color: #ffc107;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.status-sold {
    background-color: #dc3545;
    color: var(--text-light);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.apartment-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.apartment-area {
    font-size: var(--font-size-body);
    color: var(--blue-invest-medium);
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apartment-area::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5a9c' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M9 3v18'/%3E%3Cpath d='M3 9h18'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.apartment-orientation {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.apartment-orientation::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* =============================================================================
   List Item Cards
   ============================================================================= */

.apartment-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
        border-radius: var(--radius-medium);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-base);
    color: var(--text-dark);
    text-decoration: none;
}

.apartment-list-item:hover {
    background-color: var(--blue-invest-accent);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.apartment-item-info {
    display: flex;
    flex-direction: column;
}

.apartment-item-meta {
    font-size: var(--font-size-small);
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.apartment-list-item:hover .apartment-item-meta {
    color: var(--text-light);
}

/* =============================================================================
   Child Building Cards
   ============================================================================= */

.child-building-selector {
    padding: 1.25rem;
        border-radius: var(--radius-medium);
    border: 1px solid var(--border-color);
}

.selector-title {
    font-size: 1.25rem;
    color: var(--blue-invest-dark);
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: var(--font-weight-bold);
}

.child-building-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.child-building-item a {
    display: flex;
    align-items: center;
    padding: 1rem;
        border-radius: var(--radius-medium);
    transition: all var(--transition-base);
    color: var(--text-dark);
    text-decoration: none;
    box-shadow: var(--shadow-light);
}

.child-building-item a:hover {
    background-color: var(--blue-invest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-light);
}

.child-building-item img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: cover;
    border-radius: var(--radius-small);
    margin-right: 1rem;
    flex-shrink: 0;
}

.child-building-name {
    font-weight: var(--font-weight-semibold);
    color: var(--blue-invest-dark);
    transition: color var(--transition-base);
}

.child-building-item a:hover .child-building-name {
    color: var(--text-light);
}

/* =============================================================================
   Floor Cards
   ============================================================================= */

.floor-selector {
    padding: 1.25rem;
        border-radius: var(--radius-medium);
    border: 1px solid var(--border-color);
}

.floor-selector-title {
    font-size: 1.25rem;
    color: var(--blue-invest-dark);
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: var(--font-weight-bold);
}

.floor-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.floor-item a {
    display: flex;
    align-items: center;
    padding: 1rem;
        border-radius: var(--radius-medium);
    transition: all var(--transition-base);
    color: var(--text-dark);
    border: 1px solid var(--blue-invest-medium);
    text-decoration: none;
}

.floor-item a:hover,
.floor-item.active a {
    background-color: var(--blue-invest-accent);
    color: var(--text-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.floor-item img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: var(--radius-small);
    margin-right: 1rem;
    flex-shrink: 0;
}

.floor-item .floor-name {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-body);
}

/* =============================================================================
   Placeholder Cards
   ============================================================================= */

.placeholder-image {
    height: 400px;
        display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-medium);
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: var(--font-weight-medium);
    border: 2px dashed var(--border-color);
}

.no-apartments {
    text-align: center;
    padding: 3.75rem 1.25rem;
    color: var(--text-muted);
    font-size: 1.125rem;
        border-radius: var(--radius-medium);
    border: 2px dashed var(--border-color);
}

/* =============================================================================
   Responsive Design
   ============================================================================= */

@media (max-width: 768px) {
    .apartment-card {
        border-radius: var(--radius-large);
    }

    .apartment-image-container {
        height: 240px;
    }

    .apartment-info {
        padding: 1.25rem;
    }

    .apartment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .apartment-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .apartment-title {
        font-size: var(--font-size-body);
    }

    .apartment-area {
        font-size: 0.9375rem;
    }

    .apartment-orientation {
        font-size: 0.75rem;
    }

    .project-item h2 {
        padding: 1rem;
        font-size: 1.125rem;
    }

    .project-info {
        padding: 1.25rem;
    }

    .child-building-item img {
        width: 3rem;
        height: 3rem;
    }

    .floor-item img {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .apartment-image-container {
        height: 200px;
    }

    .apartment-info {
        padding: 1rem;
    }

    .apartment-title {
        font-size: 0.9375rem;
    }

    .project-item h2 {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .project-item:hover {
        transform: translateY(-4px);
    }

    .apartment-card:hover {
        transform: translateY(-4px);
    }

    .child-building-item a,
    .floor-item a {
        padding: 0.875rem;
    }

    .placeholder-image {
        height: 300px;
        font-size: var(--font-size-body);
    }
}

/* =============================================================================
   High Contrast and Accessibility
   ============================================================================= */

@media (prefers-contrast: high) {
    .card,
    .project-item,
    .apartment-card,
    .apartment-list-item {
        border: 2px solid var(--blue-invest-medium);
    }

    .apartment-status {
        border: 1px solid currentColor;
    }
}

@media (prefers-reduced-motion: reduce) {
    .card,
    .project-item,
    .apartment-card,
    .apartment-list-item,
    .child-building-item a,
    .floor-item a,
    .project-image,
    .apartment-image {
        transition: none;
    }

    .card:hover,
    .project-item:hover,
    .apartment-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

   .contact-content-wrapper {
    margin-bottom: 4rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-section,
.working-hours-section,
.office-locations-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.contact-item i {
    color: #3498db;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
    width: 1.5rem;
}

.contact-text strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin: 0.25rem 0;
    color: #495057;
}

.contact-text a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #2980b9;
}

.phone-description {
    color: #6c757d;
    font-size: 0.9rem;
}

.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.day-name {
    font-weight: 600;
    color: #2c3e50;
}

.day-hours {
    color: #495057;
}

.office-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.office-item:last-child {
    margin-bottom: 0;
}

.office-name {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.office-address,
.office-phone,
.office-email {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #495057;
}

.office-address i,
.office-phone i,
.office-email i {
    margin-right: 0.5rem;
    color: #3498db;
    width: 1rem;
}

.contact-map-section-full,
.contact-form-section-full {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    width: 100%;
}

.contact-map-section-full {
    margin-bottom: 2rem;
}

.contact-form-content {
    margin-top: 1rem;
}

.contact-form-placeholder,
.map-placeholder {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-map-section-full .map-container  {
    height: 400px;
}

/* =============================================================================
   Single Apartment Page Styles
   ============================================================================= */

/* Header Styles */
.apartment-single .entry-header {
    margin-bottom: 2rem;
}

.apartment-header-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apartment-header-content .entry-title {
    font-size: var(--font-size-h1);
    color: var(--blue-invest-dark);
    margin: 0;
    line-height: var(--line-height-tight);
}

.apartment-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

/* Content Wrapper */
.apartment-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Apartment Gallery */
.apartment-single .apartment-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.apartment-single .main-image {
    width: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.apartment-single .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.apartment-single .thumbnail-strip {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.apartment-single .thumbnail-item {
    width: calc(25% - 0.5625rem);
    cursor: pointer;
    border-radius: var(--radius-small);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.apartment-single .thumbnail-item:hover {
    border-color: var(--blue-invest-medium);
    transform: translateY(-2px);
}

.apartment-single .thumbnail-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Apartment Specs Card */
.apartment-info-card {
    background: white;
    border-radius: var(--radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    height: fit-content;
}

.info-card-title {
    font-size: var(--font-size-h3);
    color: var(--blue-invest-dark);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-invest-light);
}

.apartment-specs-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--background-muted);
}

.spec-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.spec-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-invest-medium);
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex-grow: 1;
}

.spec-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1.125rem;
    color: var(--blue-invest-dark);
    font-weight: var(--font-weight-semibold);
}

.spec-value a {
    color: var(--blue-invest-medium);
    text-decoration: none;
    transition: color var(--transition-base);
}

.spec-value a:hover {
    color: var(--blue-invest-dark);
    text-decoration: underline;
}

/* Apartment Description */
.apartment-description {
    grid-column: 1 / -1;
    background: white;
    border-radius: var(--radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
}

.apartment-description .description-header h3 {
    font-size: var(--font-size-h3);
    color: var(--blue-invest-dark);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-invest-light);
}

.apartment-description .entry-content {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
}

.apartment-description .entry-content p {
    margin-bottom: 1rem;
}

.apartment-description .entry-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles for Single Apartment */
@media (max-width: 1024px) {
    .apartment-content-wrapper {
        grid-template-columns: 1fr;
    }

    .apartment-specs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .spec-item {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .apartment-content-wrapper {
        gap: 1.5rem;
    }

    .apartment-info-card,
    .apartment-description {
        padding: 1.5rem;
    }

    .apartment-specs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .spec-item {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--background-muted);
    }

    .spec-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .apartment-single .thumbnail-item {
        width: calc(33.333% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .apartment-header-content .entry-title {
        font-size: var(--font-size-h2);
    }

    .apartment-status-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .apartment-info-card,
    .apartment-description {
        padding: 1.25rem;
    }

    .info-card-title,
    .apartment-description .description-header h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .spec-value {
        font-size: 1rem;
    }

    .apartment-single .thumbnail-item {
        width: calc(50% - 0.375rem);
    }

    .apartment-single .thumbnail-item img {
        height: 60px;
    }
}