/* Clean, modern, architectural layout styling */
.pplp-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.pplp-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.pplp-header {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pplp-eyebrow {
    margin: 0;
}

.pplp-eyebrow-line {
    margin-left: auto;
    margin-right: auto;
}

.pplp-headline {
    margin: 0;
}

.pplp-header-desc {
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}

/* Program architectural grid layout */
.pplp-grid {
    display: grid;
    width: 100%;
}

.pplp-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pplp-item-layout {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.pplp-icon-column {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.pplp-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-radius: 50%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.pplp-accent-line {
    display: block;
    flex-shrink: 0;
}

.pplp-text-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pplp-item-title {
    margin: 0;
}

.pplp-item-desc {
    margin: 0;
}

.pplp-item-link-wrap {
    display: block;
}

.pplp-item-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pplp-arrow {
    margin-left: 6px;
    display: inline-block;
}

/* CTA styling */
.pplp-cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pplp-cta-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border-style: solid;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Grid borders / Architect styling classes when enabled */
.pplp-dividers-yes .pplp-grid {
    border-collapse: collapse;
}

/* Desktop Dividers logic: 3 Columns */
@media (min-width: 1025px) {
    .pplp-dividers-yes .pplp-item {
        border-style: solid;
        border-width: 0;
    }
    .pplp-dividers-yes .pplp-item:nth-child(3n+1),
    .pplp-dividers-yes .pplp-item:nth-child(3n+2) {
        border-right-width: 1px;
    }
    .pplp-dividers-yes .pplp-item:nth-child(1),
    .pplp-dividers-yes .pplp-item:nth-child(2),
    .pplp-dividers-yes .pplp-item:nth-child(3) {
        border-bottom-width: 1px;
    }
}

/* Tablet Dividers logic: 2 Columns */
@media (min-width: 768px) and (max-width: 1024px) {
    .pplp-dividers-yes .pplp-item {
        border-style: solid;
        border-width: 0;
    }
    .pplp-dividers-yes .pplp-item:nth-child(2n+1) {
        border-right-width: 1px;
    }
    .pplp-dividers-yes .pplp-item:nth-child(1),
    .pplp-dividers-yes .pplp-item:nth-child(2),
    .pplp-dividers-yes .pplp-item:nth-child(3),
    .pplp-dividers-yes .pplp-item:nth-child(4) {
        border-bottom-width: 1px;
    }
}

/* Mobile Dividers logic: 1 Column */
@media (max-width: 767px) {
    .pplp-dividers-yes .pplp-item {
        border-style: solid;
        border-width: 0;
    }
    .pplp-dividers-yes .pplp-item:not(:last-child) {
        border-bottom-width: 1px;
    }
}
