/* ================================
   Options Grid
   ================================ */

.options-grid {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 20px;
    row-gap: 60px;
}

/* Individual Item */
.option-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 10px;
}

/* Vertical divider between columns */
.option-item:nth-child(odd) {
    border-right: 1px solid #e6e6e6;
}

/* Remove divider from Row 1 left */
.option-item:first-child {
    border-right: none;
}

/* Add horizontal divider under Row 1 (both columns) */
.option-item:nth-child(1),
.option-item:nth-child(2) {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px; /* gives space above divider */
}

/* Image */
.option-item img {
    width: 300px;
    height: 300px;
    object-fit: cover;

    border: 2px solid #000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Header Bar */
.option-header {
    width: 300px;
    height: 50px;
    margin: 10px 0;
    background: #535353;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header Text */
.option-header h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
}

/* Text Area */
.option-text {
    width: 300px;
}

.option-text p {
    margin: 0;
    line-height: 1.6;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 768px) {

    .options-grid {
        grid-template-columns: 1fr;
        row-gap: 50px;
    }

    .option-item {
        border-right: none;
    }

    .option-item:nth-child(1),
    .option-item:nth-child(2) {
        border-bottom: 1px solid #e6e6e6;
    }

    .option-item img,
    .option-header,
    .option-text {
        width: 100%;
        max-width: 350px;
    }

    .option-item img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}