/**
 * SoyuzTK MODX content area styles (no slider).
 */

.stk-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    float: none;
}

#content-area {
    padding-top: 24px;
}

#content-area .page-title {
    font-size: 2rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff6600;
}

#content-area .content,
#content-area .field-item {
    font-size: 15px;
    line-height: 1.7;
}

#content-area .content h2 {
    font-size: 1.35rem;
    margin: 28px 0 14px;
    color: #003366;
}

#content-area .content ul {
    margin: 12px 0 12px 20px;
    list-style: disc;
}

#content-area .content li {
    margin-bottom: 8px;
}

#content-area a {
    color: #003366;
    text-decoration: underline;
}

#content-area a:hover {
    color: #ff6600;
}

/* Breadcrumbs */
.stk-breadcrumbs {
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.stk-breadcrumbs a {
    color: #003366;
    text-decoration: none;
}

.stk-breadcrumbs a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.stk-breadcrumbs__sep {
    color: #999;
    margin: 0 4px;
}

/* Catalog */
.stk-catalog {
    margin: 8px 0 40px;
}

.stk-catalog__intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #444;
    margin-bottom: 24px;
    max-width: 900px;
}

.stk-catalog__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.stk-catalog__card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
    padding: 26px 22px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid #ff6600;
    text-decoration: none !important;
    color: inherit !important;
    flex: 1 1 260px;
    max-width: 360px;
    min-height: 120px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.stk-catalog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.12);
}

.stk-catalog__card-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #003366 !important;
    margin-bottom: 10px;
    line-height: 1.3;
}

.stk-catalog__card-meta {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.45;
}

/* Contact form */
.stk-contact-form {
    max-width: 560px;
    margin-top: 24px;
}

.stk-contact-form label {
    display: block;
    font-weight: 600;
    color: #003366;
    margin-bottom: 6px;
}

.stk-contact-form input[type="text"],
.stk-contact-form input[type="email"],
.stk-contact-form input[type="tel"],
.stk-contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    margin-bottom: 16px;
}

.stk-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.stk-form-consent input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

.stk-btn {
    background: #ff6600;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.stk-btn:hover {
    background: #e55a00;
}

.stk-form-error {
    color: #c00;
}

.stk-form-success {
    color: #003366;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stk-catalog__grid {
        flex-direction: column;
    }

    .stk-catalog__card {
        max-width: none;
    }

    #content-area .page-title {
        font-size: 1.5rem;
    }
}
