Загрузка данных


/* Сетка объектов 2х2 */
.objects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px; /* Тонкая линия разделения как на макете */
    background-color: #eee;
    margin-bottom: 50px;
}

.obj-item {
    display: flex;
    background: #f4f4f4;
    min-height: 200px;
}

.obj-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.obj-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
}

.obj-info p {
    font-size: 11px;
    line-height: 1.4;
    color: #666;
}

.obj-img {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.btn-gold-sm {
    background: #c59d3f;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 10px;
    width: fit-content;
    cursor: pointer;
}

/* Новости */
.news-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.news-item {
    display: flex;
    gap: 15px;
    flex: 1;
}

.news-content a {
    display: block;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    margin-bottom: 5px;
}

.news-content span {
    font-size: 10px;
    color: #999;
}

.btn-gold-outline {
    background: transparent;
    border: 1px solid #c59d3f;
    color: #c59d3f;
    padding: 10px 25px;
    cursor: pointer;
}

/* Баннер консультации */
.consult-banner {
    background: url('https://via.placeholder.com/1920x200?text=Industrial+Blur') center/cover;
    padding: 40px 0;
    color: white;
    position: relative;
}

.consult-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}

.consult-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consult-text h3 { margin: 0 0 10px 0; font-size: 20px; }
.consult-text p { font-size: 13px; max-width: 600px; opacity: 0.8; }

.btn-ask {
    background: #c59d3f;
    border: none;
    padding: 15px 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* Подвал */
.footer-main {
    padding: 40px 0;
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo { font-weight: bold; font-size: 18px; }

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: 600;
}

.copyright {
    font-size: 12px;
    color: #aaa;
}