.tutorials-section .section-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    margin-top: 30px;
}

.tutorials-section .section-header .section-title {
    font-size: 48px;
    line-height: normal;
    max-width: 706px;
}

.tutorials-section .section-header .section-subtitle {
    color: rgba(0, 0, 0, 0.60);
}

.tutorials-section .tutorials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 50px 0;
}

.tutorials-cta {
    text-align: center;
}

.tutorials-section .tutorial-card {
    flex: 0 0 350px; 
    /* max-width: 100%; */
    border-radius: 30px;
    border: 1px solid rgba(170, 136, 170, 0.2);
    padding: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.tutorials-section .video-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.tutorials-section .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tutorials-section .video-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: 18px;
    line-height: 1.3;
}

.tutorials-section .video-thumb .video-box {
    width: 100%;
    /* height: 100%; */
    height: 330px;
    border-radius: 20px;
    overflow: hidden;
}

.tutorials-section .video-thumb svg {
    position: absolute;
    bottom: -30px;
    right: 40px;
    z-index: 99;
}

.tutorials-section .video-thumb .tutorial-border-element {
    position: absolute;
    width: 80px;
    height: 45px;
    bottom: 0;
    right: 35px;
    border-radius: 999px 999px 0 0;
    background-color: var(--background);
}

.tutorials-section .video-thumb .tutorial-border-element::after,
.tutorials-section .video-thumb .tutorial-border-element::before {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    clip-path: path("M0 0 Q0,15 15,15 L 0 15 Z");
    bottom: -1px;
    right: 0;
    background: var(--background);
}

.tutorials-section .video-thumb .tutorial-border-element::after {
    left: -14px;
    transform: rotate(270deg);
}

.tutorials-section .video-thumb .tutorial-border-element::before {
    right: -14px;
}

.tutorials-section .tutorial-info {
    margin-top: 49px;
    padding: 0px 20px 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tutorials-section .tutorial-info .video-title {
    width: 80%;
    font-size: 26px;
}

.tutorials-section .tutorial-info .video-time {
    color: rgba(170, 136, 170, 0.53);
}