/* Contact Us — page-specific styles */

/* ── Channel cards grid ─────────────────────────────────────────── */
.gp-contact-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.gp-contact-card {
    background: #f8f9fc;
    border: 1px solid #e8eaf2;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow .2s, border-color .2s;
}
.gp-contact-card:hover {
    border-color: #5B6ABF;
    box-shadow: 0 4px 16px rgba(91,106,191,.12);
}

.gp-contact-card__ico {
    width: 48px;
    height: 48px;
    margin: 0 auto .75rem;
    background: linear-gradient(135deg, #5B6ABF 0%, #7B8AD4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gp-contact-card__ico svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.gp-contact-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 .4rem;
}

.gp-contact-card__text {
    font-size: .9rem;
    color: #64748b;
    margin: 0 0 .6rem;
    line-height: 1.5;
}

.gp-contact-card__link {
    font-size: .95rem;
    font-weight: 600;
    color: #5B6ABF;
    text-decoration: none;
}
a.gp-contact-card__link:hover {
    text-decoration: underline;
}

/* ── Tips numbered list ─────────────────────────────────────────── */
.gp-contact-tips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.gp-contact-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.gp-contact-tip__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #5B6ABF 0%, #7B8AD4 100%);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gp-contact-tip div {
    font-size: .95rem;
    color: #334155;
    line-height: 1.55;
    padding-top: .2rem;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .gp-contact-channels {
        grid-template-columns: 1fr;
    }
}
