/* ==================================================
   REPORTS DIRECTORY
================================================== */

.mhp-catalog {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 24px 80px;
}

/* ==================================================
   HERO
================================================== */

.mhp-catalog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 24px;

    font-family: "Geist", sans-serif;
    font-size: 14px;
    color: #283365;
    text-decoration: none;
}

.mhp-catalog-back-link:hover {
    text-decoration: underline;
}

.mhp-catalog-hero {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;

    margin-bottom: 40px;
}

.mhp-catalog-hero-content {
    max-width: 760px;
}

.mhp-catalog-hero h1 {
    margin: 0 0 12px;

    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    color: #283365;
}

.mhp-catalog-hero p {
    margin: 0;

    font-family: "Geist", sans-serif;
    font-size: 18px;
    line-height: 150%;
    color: #535C84;
}

.mhp-catalog-illustration {
    min-height: 220px;

    border: 1px solid #E0E6F2;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #283365;
    font-family: "Geist", sans-serif;
}

/* ==================================================
   SEARCH
================================================== */

.mhp-catalog-search {
    margin: 32px 0 20px;
    position: relative;
    max-width: 720px;
}

.mhp-catalog-search input {
    width: 100%;
    height: 44px;
    padding: 0 56px 0 20px;
    border: 1px solid #DCE2EF;
    border-radius: 8px;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    color: #535C84;
    outline: none;
}

.mhp-catalog-search input:focus {
    border-color: #1596B5;
}

.mhp-catalog-search-button {
    position: absolute;
    top: 50%;
    right: 18px;

    transform: translateY(-50%);

    border: 0;
    background: transparent;

    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mhp-catalog-search-button svg {
    width: 28px;
    height: 28px;
}

/* ==================================================
   ACTIVE FILTERS
================================================== */

.mhp-catalog-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 16px;
}

.mhp-catalog-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #1596B5;
    color: #fff;

    padding: 8px 14px;

    border-radius: 999px;

    font-family: "Geist", sans-serif;
    font-size: 13px;
    line-height: 1;
}

.mhp-catalog-clear-filters {
    display: flex;
    align-items: center;

    font-family: "Geist", sans-serif;
    color: #283365;
    text-decoration: none;
    font-size: 13px;
}

/* ==================================================
   CONTENT LAYOUT
================================================== */

.mhp-catalog-content {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 32px;
	margin: 0px;
}

/* ==================================================
   FILTERS
================================================== */

.mhp-catalog-filters {
    background: #F3F7FD;

    border-radius: 20px;

    padding: 24px;

    position: sticky;
    top: 30px;
}

.mhp-catalog-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px;
}

.mhp-catalog-filters-header h3 {
    margin: 0;

    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #283365;
}

.mhp-catalog-filter-group {
    margin-bottom: 28px;
}

.mhp-catalog-filter-group:last-child {
    margin-bottom: 0;
}

.mhp-catalog-filter-group label,
.mhp-catalog-filter-title {
    display: block;

    margin-bottom: 10px;

    font-family: "Geist", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #283365;
}

.mhp-catalog-filter-group input[type="text"],
.mhp-catalog-filter-group select {
    width: 100%;
    height: 42px;

    padding: 0 12px;

    border: 1px solid #DCE2EF;
    border-radius: 6px;

    background: #fff;
}

.mhp-catalog-filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mhp-catalog-filter-group li {
    margin-bottom: 10px;
}

.mhp-catalog-filter-group input[type="checkbox"],
.mhp-catalog-filter-group input[type="radio"] {
    margin-right: 8px;
}

/* ==================================================
   RESULTS
================================================== */

.mhp-catalog-results {
    min-width: 0;
}

.mhp-catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
    border-top: 1px solid #E0E6F2;
}

.mhp-catalog-results-count {
    font-family: "Geist", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #283365;
}

.mhp-catalog-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mhp-catalog-sort label {
    font-size: 14px;
    color: #283365;
}

.mhp-catalog-sort select {
    min-width: 180px;
    height: 42px;

    border: 1px solid #DCE2EF;
    border-radius: 6px;

    padding: 0 12px;
}

/* ==================================================
   GRID
================================================== */

.mhp-catalog-results-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* ==================================================
   CARD
================================================== */

.mhp-catalog-card {
    background: #FFFFFF;
    border: 1px solid #DDE3EE;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mhp-catalog-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ==========================
   IMAGE
========================== */

.mhp-catalog-card-image {
    position: relative;
    height: 260px;
}

.mhp-catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================
   BODY
========================== */

.mhp-catalog-card-body {
    padding: 24px 26px 28px;
}

/* ==========================
   TAGS
========================== */

.mhp-catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.mhp-catalog-tag {
    background: #E7EEF7;
    color: #3E507D;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: "Geist", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

/* ==========================
   TITLE
========================== */

.mhp-catalog-card-body h3.mhp-catalog-card-title {
    margin: 0 0 18px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: #283365;
}

/* ==========================
   SUMMARY
========================== */

.mhp-catalog-card-description {
    margin-bottom: 28px;

    font-family: "Geist", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;

    color: #535C84;
}

/* ==========================
   META
========================== */

.mhp-catalog-meta {
    margin-bottom: 30px;
}

.mhp-catalog-meta-row {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 20px;
    margin-bottom: 12px;
}

.mhp-catalog-meta-label {
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;

    color: #535C84;
}

.mhp-catalog-meta-value {
    font-family: "Geist", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;

    color: #283365;
}

/* ==========================
   BUTTONS
========================== */

.mhp-catalog-card-actions {
    display: flex;
    gap: 18px;
    margin-top: auto;
}

.mhp-catalog-btn {
    flex: 1;

    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    border-radius: 10px;

    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 600;

    transition: .2s ease;
}

.mhp-catalog-btn-primary,
.mhp-catalog-btn-secondary {
    color: #0682A8;
    border: 1px solid #7EC6DA;
    background: #FFFFFF;
}

.mhp-catalog-btn-disabled {
    background: #fff;
    border: 1px solid #e7eef7;
    color: #cbd0d7;

    cursor: not-allowed;
    pointer-events: none;

    opacity: 0.9;
}

.mhp-catalog-btn-primary:hover,
.mhp-catalog-btn-secondary:hover {
    background: #0682A8;
    color: #FFFFFF !important;
}

.mhp-catalog-btn-disabled:hover {
    background: #fff;
    border: 1px solid #e7eef7;
    color: #cbd0d7;
}

/* ==================================================
   ACTION BUTTONS
================================================== */

.mhp-catalog-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.mhp-catalog-btn {
    flex: 1;

    min-height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    text-decoration: none;

    font-family: "Geist", sans-serif;
    font-weight: 600;
    font-size: 13px;

    transition: .2s ease;
}

.mhp-catalog-btn-primary,
.mhp-catalog-btn-secondary {

    border: 1px solid #1596B5;
    color: #1596B5;
    background: #fff;
}

.mhp-catalog-btn-primary:hover,
.mhp-catalog-btn-secondary:hover {
    background: #1596B5;
    color: #fff;
}

/* ==================================================
   PAGINATION
================================================== */

.mhp-catalog-pagination {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mhp-catalog-pagination a,
.mhp-catalog-pagination span {
    width: 40px;
    height: 40px;

    border: 1px solid #DCE2EF;
    border-radius: 8px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    color: #283365;
}

.mhp-catalog-pagination .current {
    background: #1596B5;
    border-color: #1596B5;
    color: #fff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1200px) {

    .mhp-catalog-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 992px) {

    .mhp-catalog-content {
        grid-template-columns: 1fr;
    }

    .mhp-catalog-filters {
        position: static;
    }

    .mhp-catalog-hero {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .mhp-catalog-results-grid {
        grid-template-columns: 1fr;
    }

    .mhp-catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .mhp-catalog-card-actions {
        flex-direction: column;
    }

    .mhp-catalog-hero h1 {
        font-size: 40px;
    }

}