body {
    background-color: white;
}
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.productCategory {
    color: grey;
    font-size: 18px;
    margin-top: 15px;
}
.productDesc {
    max-width: 1000px;
    text-align: left;
    padding-top: 5px;
}
.smallTitle {
    font-size: 20px;
    font-weight: 700;
    color: black;
}
.coursesContainer {
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 75%;
    position: relative;
}
.courses {
    border: 2px dashed black;
    border-radius: 5px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
}
.courseImage {
    height: 200px;
    width: 200px;
    border-radius: 10px 0 0 10px;
    background-size: cover;
	background-position: center;
    /*mask-image: linear-gradient(270deg,rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 20%);*/
}
.courseInfo {
    display: flex;
    flex-direction: column;
    width: calc(100% - 230px);
    justify-content: center;
    text-align: left;
    padding-right: 30px;
}
.courseDesc {
    text-align: left;
    text-indent: 30px;
}
.priceInfo {
    position: absolute;
    right: 50px;
    top: -30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.productPrice {
    color: black;
    font-size: 25px;
    font-weight: 700;
}
.purchaseButton {
    background-color: var(--tangerine);
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: black;
    transition: background-color .2s linear;
}
.purchaseButton:hover {
    background-color: var(--tangerine-light);
}

@media (max-width: 1000px) {
    .productDesc {
        max-width: 90%;
    }
    .priceInfo {
        position: unset;
        right: unset;
        top: unset;
        justify-content: center;
        margin-bottom: 30px;
    }
    .coursesContainer {
        max-width: unset;
    }
    .courses {
        padding: 20px;
    }
    .card {
        flex-direction: column;
        justify-content: center;
        width: 200px;
        gap: 7px;
    }
    .courseImage {
        width: 100%;
        height: 100px;
        border-radius: 5px 5px 0 0;
    }
    .courseInfo {
        width: 100%;
        padding-right: 0;
        margin: 5px;
    }
    .courseDesc {
        width: 95%;
        text-indent: 10px;
    }
    .sectionTitle {
        font-size: 30px;
    }
    .sectionDesc {
        font-size: 15px;
        padding-top: 8px;
    }
}
