.wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.snippet {
    background-color: rgba(var(--primary-dark), 1);
    border-radius: 10px;
    box-sizing: border-box;
    transition: box-shadow 0.4s ease-in-out;
    text-align: center;
}

.quick-info-snippet {
    width: 100%;
    text-align: justify;
    padding: 0em 3em 1em 3em;
}
.job-roles-faq-container {
    display: flex;
    width: 100%;
}

.job-roles-snippet{
    flex: 1 1 45%;
    margin: 1em;
}

.faq-snippet {
    flex: 1 1 50%;
    line-height: 1.5em;
    margin: 1em;
}

.snippet h3 {
    text-align: center;
    margin-bottom: 1em;
}

.snippet ul li {
    list-style-type: none;
    margin: 0.2em 1em;
}

.snippet ul {
    margin-bottom: 1em;
}

.snippet_title {
    color: #000;
    background: rgba(var(--primary), 1);
    width: 170px;
    padding: 8px 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin: auto;
}

.snippet_title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: rgb(var(--green));
    margin: auto;
    border-radius: 2px;
    transform: scaleX(0.5);
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

.info-snippet:hover .course_title::after {
    transform: scaleX(1.5);
}

@media screen and (max-width: 1100px) {
    .job-roles-faq-container {
        flex-direction: column;
        align-items: stretch;
    }
}

@media screen and (max-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .snippet {
        width: 100%;
    }
    .quick-info-snippet {
        padding: 0em;
    }
    .job-roles-snippet,
    .faq-snippet {
        margin: 1em 0em;
    }
}

