/* start: Option */
.option-section {
    padding: 48px 0;
}
.option-section .container {
    max-width: 1360px;
    margin: auto;
}
.option-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}
.option-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.text-green {
    color: #00ad70;
}
.option-description {
    font-size: 14px;
    color: #7a7a7a;
    text-align: center;
    width: 60%;
    margin: auto;
}
.option-wrapper {
    margin-top: 76px;
    /* display: flex; */
    /* justify-content: center; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 55px;
}

/* Position charity option in center of bottom row */
#charity-option {
    grid-column: 1 / -1;
    max-width: 940px;
    margin: 0 auto;
}

#charity-option .option-item-title {
    text-align: center;
    display: block;
    margin-top: -72px;
    font-size: 24px;
}

#charity-option .option-item-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.option-input {
    display: none;
}
.option-item {
    /* max-width: 488px; */
    width: 100%;
    margin-right: 40px;
    border-radius: 30px;
    border: 1px solid #8e8a8a;
    padding: 30px 47px;
    cursor: pointer;
    position: relative;
}
.option-item:last-child {
    margin-right: 0;
}
.option-input:checked + .option-item,
.option-item:hover {
    outline: 2px solid #000;
    border-color: #000;
    background-color: #f7faf8;
}
.option-item-radio {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border: 3px solid #8e8a8a;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.option-input:checked + .option-item .option-item-radio {
    border-color: #00ad70;
}
.option-input:checked + .option-item .option-item-radio::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background-color: #00ad70;
}
.option-item-icon {
    width: 74px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #f7faf8;
    margin-bottom: 24px;
}
.option-item-title {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
}
.option-item-list {
    padding-left: 20px;
}
.option-item-list-item {
    margin-bottom: 20px;
    color: #7a7a7a;
}
.option-item-list-item:last-child {
    margin-bottom: 0;
}
.option-bottom {
    text-align: center;
}
.option-bottom-text {
    margin-top: 24px;
}
.option-bottom-link {
    text-decoration: none;
    color: #00ba6b;
    font-weight: 500;
}
/* end: Option */

/* start: Breakpoints */
@media screen and (max-width: 1200px) {
    .option-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 991px) {
    .option-section {
        padding: 40px 0;
    }
    .option-title {
        font-size: 34px;
    }

    .option-description {
        width: 100%;
    }

    .option-item {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .option-item:last-child {
        margin-bottom: 0;
    }
    .option-item-title {
        min-height: auto;
    }
}
@media screen and (max-width: 890px) {
    .option-wrapper {
        grid-template-columns: 1fr;
    }
    
    #charity-option {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .option-section {
        padding: 32px 0;
    }
    .option-subtitle {
        font-size: 16px;
    }
    .option-title {
        font-size: 28px;
    }
    .option-wrapper {
        grid-template-columns: 1fr;
    }
    .option-item {
        margin-right: 0;
        margin-bottom: 40px;
    }
    .option-item:last-child {
        margin-bottom: 0;
    }
    .option-item-title {
        min-height: auto;
    }
    
    #charity-option {
        max-width: 100%;
        margin-top: 0;
    }
    #charity-option .option-item-title {
        margin-top: 0;
    }
    #charity-option .option-item-list {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
}
@media screen and (max-width: 575px) {
    .option-subtitle {
        font-size: 14px;
    }
    .option-title {
        font-size: 24px;
    }
    .option-item {
        padding: 13px;
    }
    .option-item-title {
        font-size: 24px;
        min-height: auto;
    }
    
    #charity-option .option-item-list {
        grid-template-columns: 1fr !important;
    }
}
/* end: Breakpoints */
.option-item {
    max-width: 100%;
}