/* ==============================================
   PORTFOLIO PAGE — Intro
   ============================================== */

.portfolio-intro {
    background-color: #0F3350;
    padding: 5rem 2rem;
    text-align: center;
}

.portfolio-intro-inner {
    max-width: 52rem;
    width: 100%;
    margin: 0 auto;
}

.portfolio-intro h1 {
    color: #E5E4E2;
}

.portfolio-intro p {
    color: #ACB6BD;
}

/* ==============================================
   PORTFOLIO PAGE — Grid Section
   ============================================== */

.portfolio-grid-section {
    background-color: #D3D3D3;
    padding: 4rem 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 48rem) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==============================================
   PORTFOLIO PAGE — Cards
   ============================================== */

.port-card {
    background-color: #FFFFFF;
    border: 0.0625rem solid #B8B8B8;
    border-radius: 0.5rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.port-card--pumpkins  { background-color: #EDD0B5; }
.port-card--greenfire { background-color: #9DBFB2; }
.port-card--judge     { background-color: #D6E0EF; }

.port-card--placeholder {
    background-color: #E8E8E8;
    border-color: #D0D0D0;
    opacity: 0.55;
}

.port-card-type {
    display: inline-block;
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue',
        Arial, sans-serif;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F3350;
}

.port-card--placeholder .port-card-type {
    color: #737F87;
}

.port-card-name {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue',
        Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A2530;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.375rem;
}

.port-card-name:hover {
    color: #2D6FA3;
}

.port-card--placeholder .port-card-name {
    color: #737F87;
}

.port-card-desc {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #0F3350;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.port-card--placeholder .port-card-desc {
    color: #737F87;
}

.port-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.port-card-list li {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #1A2530;
    padding-left: 1.125rem;
    position: relative;
    line-height: 1.4;
}

.port-card-list li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    color: #7393B3;
}

.port-card-btn {
    margin-top: 1.5rem;
    align-self: center;
}

.btn-port-pumpkins       { background-color: #CC5500; color: #E5E4E2; }
.btn-port-pumpkins:hover { background-color: #8E4C14; color: #E5E4E2; }
.btn-port-greenfire       { background-color: #1E5C3A; color: #E5E4E2; }
.btn-port-greenfire:hover { background-color: #002D04; color: #E5E4E2; }
.btn-port-judge           { background-color: #000080; color: #E5E4E2; }
.btn-port-judge:hover     { background-color: #071D2E; color: #E5E4E2; }

/* ==============================================
   PORTFOLIO PAGE — Closing Section
   ============================================== */

.portfolio-closing p {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
