/* =============================================================
   Tool Hub CSS — /tools/ archive page
   ============================================================= */

.tool-hub { max-width: 1440px; margin: 0 auto; }

/* --- Hero --- */
.tool-hub__hero {
    background: linear-gradient(135deg, #7C2D3B 0%, #5A1F2C 100%);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    color: #fff;
}
.tool-hub__hero-inner { max-width: 700px; margin: 0 auto; }
.tool-hub__title {
    font-family: 'Lexend', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0 0 1rem;
}
.tool-hub__subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* --- Tool Grid --- */
.tool-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 3rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tool-hub__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #E8E0D8;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.tool-hub__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #7C2D3B;
}

.tool-hub__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.tool-hub__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F2F3;
    border-radius: 14px;
    color: #7C2D3B;
}

.tool-hub__card-tag {
    font-family: 'Lexend', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background: #7C2D3B;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.tool-hub__card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 0.5rem;
}

.tool-hub__card-desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1.25rem;
    flex: 1;
}

.tool-hub__card-cta {
    font-family: 'Lexend', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #7C2D3B;
}

/* --- Help Section --- */
.tool-hub__help {
    background: #FAF7F2;
    padding: 3rem 1.5rem;
    text-align: center;
}
.tool-hub__help-inner { max-width: 600px; margin: 0 auto; }
.tool-hub__help h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 0.75rem;
}
.tool-hub__help p {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}
.tool-hub__help-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .tool-hub__hero { padding: 3rem 1rem 2rem; }
    .tool-hub__title { font-size: 2rem; }
    .tool-hub__grid { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 1rem; }
    .tool-hub__card { padding: 1.5rem; }
    .tool-hub__card-title { font-size: 1.125rem; }
}
@media (max-width: 480px) {
    .tool-hub__title { font-size: 1.75rem; }
}
