/*custom css for pathway dynamic pages*/
/* Grid layout wrapper */
.pathways-grid {
    display: block;
    margin: 2rem 0;
}
/* Pathway item layout */
.pathway-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pathway-col img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.content-col h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.content-col p {
    font-size: 0.95rem;
    margin: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.content-col p svg {
    width: 2em;
    height: 2em;
    vertical-align: middle;
    fill: currentColor;
}

.button-col {
    display: flex;
    justify-content: flex-end;
}

.learn-more-btn {
    display: inline-block;
    background: #e64100;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 999px;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.8em;
}

.purple_text{
color:#4f1485
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .pathway-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .button-col {
        justify-content: center;
        margin-top: 1rem;
    }
}

.pathway-filter-form {
    background: #f2f9fb;
    border-left: 4px solid #0073aa;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    font-family: sans-serif;
}

.pathway-filter-form fieldset {
    border: none;
    padding: 0;
    margin: 1rem 0;
}

.pathway-filter-form legend {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.pathway-filter-form label {
    display: block;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.pathway-filter-form input[type="checkbox"] {
    margin-right: 0.5rem;
}

.filter-btn {
    background: #0073aa;
    color: #fff;
    padding: 0.4rem 0.9rem;
    border: 1px solid #0073aa;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.filter-btn:hover {
    background: #005f8d;
}

.clear-filters {
    font-size: 0.85rem;
    margin-left: 1rem;
    color: #0073aa;
    text-decoration: underline;
}

.clear-filters:hover {
    color: #005f8d;
}

.filter-wrapper {
    background: #f2f9fb;
    border: 1px solid #cbdce3;
    padding: 1rem;
    border-left: 4px solid #0073aa;
    margin-bottom: 2rem;
}

.toggle-filter-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    color: #0073aa;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.toggle-icon {
    font-size: 1.2rem;
}

.filter-panel {
    margin-top: 1rem;
}

.active-filter-summary {
    margin-top: 1rem;
    font-size: 0.95rem;
    background: #f7f7f7;
    border-left: 4px solid #0073aa;
    padding: 0.8rem 1rem;
    border-radius: 3px;
    color: #333;
}

/*** Custom CSS for MUL text wrapping ***/
.inline-meta .value,
.inline-meta .suffix {
  display: inline;
}

/** Custom CSS for Pathway Testimonial shapes **/
.shape-box-rotate-sha {
transform: matrix(1, 0.09, -0.09, 1, 0, 0);
}

.shape-pentagon-rotate-sha {
  transform: matrix(0.99, -0.1, 0.1, 0.99, 0, 0);
}

/** Custom Styles for Individual Pathway Access Code Checker **/

.style-access-code input {
    width: 100%;
    padding: 8px;
    border: 2px solid #5A6E7F;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    margin-bottom: 20px;
}

.style-access-code button
 {
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer margin */
.wp-site-blocks > * {
  margin-block-start: 0rem !important;
}