.youtube_wrap {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 50px;
}

.youtube_head {
    background-color: #faf4ee; 
    /*border: 1px solid #f0e4d8; */
    padding: 35px 25px;
    border-radius: 24px; 
    text-align: center;
    margin-bottom: 30px; 
}

.youtube_subttl {
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.youtube_ttl {
    font-size: 34px;
    font-weight: bold;
    color: #222;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px dotted #b5b5b5;
    display: inline-block;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 565px) {
    .youtube_ttl {        
        font-size: 24px;
    }
}
.youtube_tx {
    color: #e60012; 
}

.youtube_read {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    font-weight: bold;
}

.cate_btns {
    display: flex;
    justify-content: center;
    gap: 15px;
	flex-wrap: wrap;
}

.cate_btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 22px;
    background-color: #f0e4d6; 
    border-radius: 25px;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.2s;
	box-sizing: border-box;
}

@media screen and (max-width: 565px) {
    .cate_btn {        
        width: calc(50% - 7.5px);
        justify-content: center; 
    }
}
.cate_btns img {
    height: 10px;
}



.category-icon {
    margin-right: 8px;
    font-size: 16px;
}

.video_wrap {
   display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; 
}
@media all and (max-width: 575px) {
.video_wrap {
    grid-template-columns: 1fr;
	gap: 5px; 
}
}
.video_box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    border-radius: 20px;
    overflow: hidden; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.15); 
    margin-bottom: 15px;
}
@media all and (max-width: 575px) {
.video_box {    
    margin-bottom: 10px;
}
}
.video_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.cta_area {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

.cta_tx {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 12px;
}

.cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 50px;
    background-color: #e60012;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
    position: relative;
    transition: transform 0.2s, background-color 0.2s;
}

.cta_btn:hover {
    background-color: #cc0010;
    transform: scale(1.03);
}

.cta-arrow-icon {
    font-size: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-icon {
    position: absolute;
    left: 58%;
    bottom: -20px;
    width: 32px;
    pointer-events: none;
}


@media (max-width: 650px) {
    .header-card {
        padding: 25px 15px;
    }
    .header-title {
        font-size: 22px;
    }
    .header-description {
        font-size: 13px;
    }
    .category-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    .category-button {
        flex: 1 1 calc(50% - 8px); 
        justify-content: center;
        padding: 10px 5px;
        font-size: 13px;
    }
    .cursor-icon {
        left: 65%;
    }
}