/************************************************
HELP PANEL
************************************************/

.help-panel {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    background: #f8f8f8;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
}

/************************************************
INTRO
************************************************/

.help-panel-intro {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-right: 1px solid #e5e7eb;
}

.help-panel-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0f1720;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.help-panel-content h2 {
    margin: 0 0 .75rem;
    font-size: 2rem;
    line-height: 1.1;
}

.help-panel-content p {
    margin: 0 0 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.help-panel-link {
    color: var(--nemcc-gold,#c8a34a);
    font-weight: 700;
    text-decoration: none;
}

.help-panel-link:hover {
    text-decoration: underline;
}

/************************************************
CONTACT CARDS
************************************************/

.help-panel-card {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-right: 1px solid #e5e7eb;
}

.help-panel-card:last-child {
    border-right: none;
}

.help-panel-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #0f1720;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.help-panel-card h3 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
}

.help-panel-card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: .95rem;
}

.help-panel-card a {
    color: inherit;
    text-decoration: none;
}

.help-panel-card a:hover {
    text-decoration: underline;
}

/************************************************
TABLET
************************************************/

@media (max-width: 1100px) {

    .help-panel {
        grid-template-columns: 1fr 1fr;
    }

    .help-panel-intro {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .help-panel-card:nth-child(3) {
        border-right: none;
    }
}

/************************************************
MOBILE
************************************************/

@media (max-width: 768px) {

    .help-panel {
        grid-template-columns: 1fr;
    }

    .help-panel-intro,
    .help-panel-card {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .help-panel-card:last-child {
        border-bottom: none;
    }
}