.archive {
    /* Add your project styles here */
}
.archive-title h1 {
    font-family: 'dinish-bold', sans-serif;
    font-size: 3rem;
    padding-top: 3rem;
    margin-bottom: .5rem;
}
.archive-subheading {
    font-family: 'dinish-regular', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #505f79;
}
.client-header h3 {
    font-family: 'dinish-regular', sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    padding-bottom: 1rem;
}
.cover {
    /* Add styles here */
}
.breakout-image {
    width: 100vw; /* Full viewport width */
    max-width: 1840px; /* Do not exceed the natural size */
    height: auto; /* Maintain aspect ratio */
    position: relative;
    left: 50%;
    transform: translateX(-50%); /* Center the image */
}
.client-1, .client-2 {
    font-family: 'dinish-regular', sans-serif;
    font-weight: normal;
    font-size: .85rem;
    line-height: 1.5em;
    margin-top: 6rem;
    margin-bottom: 6rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 40px 20px 20px;
}
.item {
    /* Add styles here */
}
.item-client  {
    grid-column: 1 / span 3;
    grid-row: 1;
    padding-top: 2px;
}
.client-role  {
    grid-column: 1 / span 3;
    grid-row: 2;
}
.client-dates  {
    grid-column: 1 / span 3;
    grid-row: 3;
}
.client-description  {
    grid-column: 2;
    grid-row: 1 / span 3;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .archive-title h1 {
        font-size: 2rem;
        padding-top: 2rem;
        margin-bottom: .5rem;
    }

    .archive-subheading {
        font-size: 0.9rem;
    }

    .client-header h3 {
        font-size: 1rem;
        padding-bottom: 0.5rem;
    }

    .client-1, .client-2 {
        margin-top: 3rem;
        margin-bottom: 3rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: left;
    }

    .client-1 {
        margin-bottom: 4rem; /* Added spacing between client-1 and client-2 */
    }

    .item-client {
        grid-column: 1;
        grid-row: 1;
        padding-top: 2px;
    }

    .client-role {
        grid-column: 1;
        grid-row: 2;
    }

    .client-dates {
        grid-column: 1;
        grid-row: 3;
        margin-bottom: 2rem;
    }

    .client-description {
        grid-column: 1;
        grid-row: 4;
        margin-top: 1rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .client-1, .client-2 {
        margin-top: 6rem;
        margin-bottom: 6rem;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: left;
    }

    .client-1 {
        margin-bottom: 5rem; /* Added spacing between client-1 and client-2 */
    }

    .item-client {
        grid-column: 1;
        grid-row: 1;
        padding-top: 2px;
    }

    .client-role {
        grid-column: 1;
        grid-row: 2;
    }

    .client-dates {
        grid-column: 1;
        grid-row: 3;
        margin-bottom: 2rem;
    }

    .client-description {
        grid-column: 1;
        grid-row: 4;
        margin-top: 1rem;
    }
}