.section {
    width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
}

.section_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-FF9E30);
    text-transform: uppercase;
}

.section_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.section_list_item > img {
    width: 100%;
    height: 180px;
    object-fit: fill;
}

.section_list_item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding-bottom: 20px;
}

/* Hover */
.section_list_item:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.section_list_item_title {
    padding: 0px 10px;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    text-transform: uppercase;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section_list_item_center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.section_list_item_center > span {
    display: block;
    width: 50px;
    height: 2px;
    background-color: #aaa;
}

.section_list_item_content {
    padding: 0px 10px;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section_button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* From Uiverse.io by zymantas-katinas */
.button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
    cursor: pointer;
    font-family: sans-serif;
}

/* Shadow layer */
.button .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 146, 15, 0.25);
    border-radius: 8px;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

/* Edge layer */
.button .edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(
        to left,
        hsl(35, 100%, 35%) 0%,
        hsl(35, 92%, 53%) 8%,
        hsl(35, 92%, 53%) 92%,
        hsl(35, 100%, 35%) 100%
    );
}

/* Front layer */
.button .front {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1.25rem;
    color: white;
    background: var(--background-F5911F);
    border-radius: 8px;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

/* Hover and active states */
.button:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.button:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

/* Disable text selection */
.button .front span {
    user-select: none;
}

@media only screen and (max-width: 1199px) {
    .section {
        width: 1000px;
    }
}

@media only screen and (max-width: 999px) {
    .section {
        width: 100%;
        padding: 0px 10px;
        box-sizing: border-box;
    }
    .section_title {
        font-size: 22px;
    }

    .section_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .section_list_item_title {
        font-size: 14px;
    }
    .button .front {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
