.pen {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
}

.pen-subtitle {
    color: #6F6E6C;
    text-align: start;
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.4rem;
}

.pen-images {
    display: flex;
    gap: 1rem;
}

.pen-images-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    flex: 1;
}

@media (max-width: 1020px) {
    .pen {
        align-items: start;
    }

    .pen {
        align-items: center;
    }

    .pen h2 {
        text-align: center;
    }

    .pen p {
        text-align: center;
    }

    .pen-images {
        display: flex;
        flex-direction: column;
        grid-area: 1rem;
    }

    .pen-btn {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .pen {
        width: 100%;
        align-items: center;
    }

    .pen-images-column {
        display: none;
    }

    .pen-images img {
        width: 100%;
        object-fit: fill;
    }
}