p, .text-main {
    font-size: 1.25rem !important;
}
.buttons-container {
    gap: 2rem;
}
.program-purpose {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media (max-width: 640px) {
    .program-purpose {
        flex-direction: column;
    }
}

.mentee-swiper-container,
.feedback-swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.feedback-swiper-container {
    background: rgb(var(--color-danger) / 0.08);
}

.mentee-swiper-slide img,
.mentee-swiper-slide p {
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    padding: 3rem;
}

.feedback-swiper-slide {
    padding: 2rem;
}
.feedback-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.feedback-header {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 1rem;
}
.feedback-header img {
    height: 4rem;
}

.results-table {
    margin: auto;
}
.results-table td {
    width: 8rem;
}
.mentee_proud_description {
    font-size: 1.25rem;
}

.mentee-swiper-wrapper-p-rule p {
    padding: 0 !important;
    margin: 0 !important;
}
.mentee-swiper-wrapper {
    align-items: flex-start;
}

/* rules table */
.rules-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}
.rules-table td {
    vertical-align: top;
    padding: 0.75rem;
}
.rules-table .rules-img {
    width: 120px;
    min-width: 120px;
}
.rules-table .rules-img img {
    width: 100px;
    height: auto;
    border-radius: 12px;
}
.rules-table .rules-title {
    width: 200px;
    min-width: 160px;
    font-weight: 700;
    font-size: 1.1rem;
    color: rgb(var(--color-dark-blue));
}
.rules-table .rules-desc {
    font-size: 1.1rem;
}
.rules-table .rules-desc ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0.25rem 0;
}
@media (max-width: 768px) {
    .rules-table, .rules-table tbody, .rules-table tr, .rules-table td {
        display: block;
        width: 100%;
    }
    .rules-table .rules-img {
        text-align: center;
        width: 100%;
    }
    .rules-table .rules-img img {
        margin: 0 auto;
    }
    .rules-table .rules-title {
        width: 100%;
        text-align: center;
    }
}

/* FAQ */
details {
    user-select: none;
}
details summary svg {
    transform: rotate(90deg);
}
details[open] summary svg {
    transform: rotate(-90deg);
}
details[open] summary ~ * {
    animation: ease-opacity-t-b 0.5s ease;
}
summary {
    cursor: pointer;
}
svg {
    transition: all 0.3s;
}
summary::-webkit-details-marker {
    display: none;
}
:focus {
    outline: none;
}
.show-more {
    display: flex;
    padding-top: 40px;
}
.show-more a {
    display: inline-block;
    margin: 20px auto;
    padding: 12px 12px;
    color: rgb(var(--color-light-blue));
    text-decoration: none;
    border: 1px solid rgb(var(--color-light-blue) / 0.8);
    border-radius: 100px;
}

/* FAQ item border */
.question {
    border-bottom: 1px solid rgb(var(--color-light-gray));
}

/* modal */
.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}
.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}
.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: rgb(var(--color-blue));
    box-sizing: border-box;
}
.modal__close {
    background: transparent;
    border: 0;
}
.modal__header .modal__close:before {
    content: "\2717";
}
.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}
.modal__btn {
    font-size: 0.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgb(var(--color-light-gray));
    color: rgba(0, 0, 0, .8);
    border-radius: 0.25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform 0.25s ease-out;
    transition: transform 0.25s ease-out;
    transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.modal__btn-primary {
    background-color: rgb(var(--color-blue));
    color: #fff;
}

/* animation */
@keyframes mm-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes mm-slideIn {
    from { transform: translateY(35%); }
    to   { transform: translateY(0); }
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mm-fadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mm-slideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}
.modal[aria-hidden='true'] {
    display: none;
}
