@charset "utf-8";
/* CSS Document */


.hp-print-section {
    padding: 3.5rem 1.5rem 4rem;
    background: #f7faf7;
}

.hp-print-container {
    max-width: 1140px;
    margin: 0 auto;
}

.hp-print-title {
    font-size: 2.1rem;
    margin: 0 0 0.75rem;
    text-align: center;
    color: #173f2a;
}

.hp-print-intro {
    max-width: 820px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1rem;
    color: #4b5563;
}

/* 2×2 grid of cards */
.hp-print-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

/* Card styling */
.hp-print-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(8, 36, 20, 0.14);
    padding: 1.9rem 1.9rem 1.8rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hp-print-card-title {
    font-size: 1.25rem;
    margin: 0 0 0.6rem;
    color: #173f2a;
}

.hp-print-card-text {
    font-size: 0.97rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 0.9rem;
}

.hp-print-card-image {
    margin: 0 0 1.1rem;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
}

.hp-print-card-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Tables */
.hp-print-tables h3 {
    font-size: 0.98rem;
    margin: 1rem 0 0.4rem;
    color: #173f2a;
}

.hp-print-tables table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.hp-print-tables th,
.hp-print-tables td {
    border: 1px solid #e5e7eb;
    padding: 0.35rem 0.5rem;
    text-align: left;
}

.hp-print-tables th {
    background: #f3f4f6;
    font-weight: 600;
    color: #374151;
}

.hp-print-tables td {
    color: #111827;
}

.hp-print-note {
    font-size: 0.88rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hp-print-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hp-print-section {
        padding: 3rem 1rem 3.5rem;
    }

    .hp-print-card {
        padding: 1.6rem 1.5rem 1.6rem;
    }

    .hp-print-title {
        font-size: 1.8rem;
    }
}
