/* 50th Prachachat */
.prachachat-50th {
	padding: 30px 0;
    margin-bottom: 30px;
}

.prachachat-50th__container {
	max-width: 1110px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

/* Header */
.prachachat-50th__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.prachachat-50th__logo {
	height: 150px;
	width: auto;
}

/* Sponsers */
.prachachat-50th__sponsers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.prachachat-50th__sponser-item a {
	display: block;
}

.prachachat-50th__sponser-img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	display: block;
}

.prachachat-50th__title {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	flex: 1;
}

.prachachat-50th__seemore {
	white-space: nowrap;
	font-size: 14px;
	color: inherit;
	text-decoration: none;
}

.prachachat-50th__seemore:hover {
	text-decoration: underline;
}

/* Grid */
.prachachat-50th__grid {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 20px;
}

/* Slide */
.prachachat-50th__slide {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.prachachat-50th__slider {
	display: flex;
	transition: transform 0.4s ease;
}

.prachachat-50th__slide-item {
	min-width: 100%;
	position: relative;
}

.prachachat-50th__slide-item a {
	display: block;
	text-decoration: none;
	color: inherit;
    aspect-ratio: 728 / 520;
}

.prachachat-50th__slide-img {
	/*width: 100%;
	height: 400px;*/
	/*object-fit: contain;*/
    width: 100%;
    height: auto;
	display: block;
	border-radius: 8px;
}

.prachachat-50th__slide-caption {
	margin-top: 10px;
}

.prachachat-50th__slide-caption h3 {
    font-family: Kilogram, sans-serif;
	margin: 0;
	color: #fff;
	font-size: clamp(1.25rem, 2vw + 1rem, 1.75rem);
	font-weight: 600;
	line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 85%;
    transition: all 0.3s ease;
}

.prachachat-50th__slide-item a:hover .prachachat-50th__slide-caption h3 {
    text-decoration: underline;
    transition: all 0.3s ease;
}

.prachachat-50th__slide-cat {
    font-family: Kilogram, sans-serif;
	font-size: 14px;
	color: #EFEFEF;
    margin-top: 10px;
}

.prachachat-50th__clips-cat,
.prachachat-50th__slide-date {
    font-family: Kilogram, sans-serif;
	font-size: 14px;
	color: #EFEFEF;
}

/* Slider Nav */
.prachachat-50th__slider-prev,
.prachachat-50th__slider-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.prachachat-50th__slider-prev {
	left: 10px;
}

.prachachat-50th__slider-next {
	right: 10px;
}

.prachachat-50th__slider-prev:hover,
.prachachat-50th__slider-next:hover {
	background: rgba(0, 0, 0, 0.8);
}

/* Clips */
.prachachat-50th__clips {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.prachachat-50th__clips-item {
	/*border-radius: 8px;*/
	overflow: hidden;
	/*background: #fff;*/
	/*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.prachachat-50th__clips-item a {
	display: flex;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.prachachat-50th__clips-thumb {
	flex-shrink: 0;
	width: 40%;
    border-radius: 5px;
}

.prachachat-50th__clips-img {
	width: 100%;
    height: auto;
	object-fit: cover;
	display: block;
    border-radius: 5px;
}

.prachachat-50th__clips-info {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
    padding-bottom: 10px;
}

.prachachat-50th__clips-title {
    font-family: Kilogram, sans-serif;
	margin: 0;
	font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
	font-weight: 600;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
    color: #FFF;
    width: 85%;
    transition: all 0.3s ease;  
}
.prachachat-50th__clips-item a:hover .prachachat-50th__clips-title {
    text-decoration: underline;
    transition: all 0.3s ease;
}

.prachachat-50th__clips-date {
    font-family: Kilogram, sans-serif;
	font-size: 14px;
	color: #EFEFEF;
}

.prachachat-50th__clips-item:first-child a {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prachachat-50th__clips-item:first-child a .prachachat-50th__clips-thumb {
    width: 100%;
}
.prachachat-50th__clips-item:not(:first-child) a .prachachat-50th__clips-thumb {
    display: none;
}

.prachachat-50th__clips-detail,
.prachachat-50th__slide-detail {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}
.prachachat-50th__clips-btn,
.prachachat-50th__slide-btn {
	background: rgba(255,255,255,1);
	color: #000;
	border: none;
	width: 36px !important;
	height: 36px !important;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.prachachat-50th__clips-btn-wrapper,
.prachachat-50th__slide-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
}

/* Responsive */
@media (max-width: 768px) {
	.prachachat-50th__grid {
		grid-template-columns: 1fr;
	}

    .prachachat-50th__logo {
        height: 100px;
    }
}
