.c-ttl__01 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
}

.c-ttl__01-lead {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}
.c-btn-01{
    border: 1px solid #0000000d;
    background: var(--color-main2);
    color: white;
    padding: 5px 18px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    gap: 5px;
}
.c-btn-01-svg{
    width: 18px;
    height: 18px;
}
.c-btn-01--white{
    background: white;
    color: black;
    border-color: #000;
}

@media (max-width: 992px){
 .c-ttl__01{
   font-size: 24px;
  }
}
/* news */
.article-item {
   
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-item:hover {
    transform: translateY(-4px);
}

.article-item__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.article-item__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

.article-item__content {
    padding: 12px 0 0;
}

.article-item__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1.4rem;
    color: #555;
}

.article-item__author,
.article-item__date,
.article-item__views {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-item__icon {
    
}
.article-item__icon svg{
    width: 15px;
    height: 15px;
}

/* news2 */
.article-item2 {
  background: #F8F9FA;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
  border-bottom: 7px solid transparent;
}
.article-item2:hover{
	
}
.article-item2:hover {
 background: #FFFFFF;
  box-shadow: 0px 8px 30px rgb(0 0 0 / 10%);
  border-bottom-color: #000000;
}

.article-item2__img {
  margin: 0 0 14px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9; /* keeps height consistent */
  background: #eee;
}
.article-item2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.6s ease;
}
.article-item2:hover .article-item2__img img {
  transform: scale(1.05);
}

.article-item2__ct {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-item2__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
}
.article-item2__sep {
  opacity: 0.5;
}

.article-item2__ttl {
  margin: 0;
  /* font-size: 16px; */
}
.article-item2__titlelink {
  color: #0b0b0b;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
	 display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-item2__titlelink:hover {
  opacity: 0.9;
}

.article-item2__desc {
  margin: 4px 0 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* product */

.car-card{
  display: grid;
  grid-template-rows: auto 1fr;
  background: white;
  /* border: 1px solid #e6e6e6; */
  /* border-radius: 6px; */
  overflow: hidden;
  box-shadow: 0 1px 3px -2px rgba(0,0,0,.12),0 1px 2px rgba(0,0,0,.24);
  transition: box-shadow .25s ease, transform .08s ease;
}
.car-card:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.1);
  /* transform: translateY(-1px); */
}


.car-card__media{
  margin: 0;
  background: #f7f7f7;
  line-height: 0;
}
.car-card__img{
  width: 100%;
  aspect-ratio: 16/10;      /* giữ tỷ lệ khung */
  object-fit: cover;
  display: block;
}


.car-card__body{
  padding: 10px 10px 18px;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}

.car-card__category{
  font-size: 12px;
  text-transform: uppercase;
  color: #8a94a6;
  margin-bottom: 2px;
}

.car-card__title{
  font-size: 16px;
  line-height: 1.25;
  margin: 0 5px;
  font-weight: 800;
}

.car-card__price{
  font-weight: 800;
  font-size: 14px;
  color: #d91f26;
}
@media (max-width: 992px){
  .car-card__title{
   	font-size: 14px; 
  }
  .car-card__price{
    font-size: 13px;
  }
}
/*  */
.service-row {
 gap: 20px 0; 
}
.service-row__item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .12);
    transition: transform .12s ease, box-shadow .25s ease;
}

.service-row__item:hover .service-row__ct{
    background: #000;
    color: white;
}


.service-row__icon {
    background: #0b0b0b;
    display: grid;
    place-items: center;
    z-index: 2;
    padding: 5px 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
}

.service-row__icon img {
    width: 33px;
    height: 33px;
    display: block;
}


.service-row__ct {
    position: relative;
    display: block;
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #111;
    z-index: 1;
    transition: all .5s ease;
}

.service-row__ttl {
    display: block;
    font-weight: 800;
}

.service-row__desc {

}
.service-row__btn{
    text-align: center;
}
.service-row__btn svg{
    width: 24px;
    height: 24px;
}

/* modal */
/* Modal Overlay */
/* <div class="modal-overlay" id="basicModal">
        <div class="modal">
            <div class="modal__header">
                <h2 class="modal__title"></h2>
                <p class="modal__subtitle"></p>
                <button class="modal__close">
                    <svg fill="currentColor" viewBox="0 0 16 16">
                        <path d="M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8 2.146 2.854Z"/>
                    </svg>
                </button>
            </div>
            <div class="modal__body">
                <div class="modal__content">
                    
                </div>
            </div>
            <div class="modal__footer">
                <button class="btn btn--secondary modal-close">Close</button>
                <button class="btn btn--primary">Learn More</button>
            </div>
        </div>
    </div> */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(4px);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay--active {
	opacity: 1;
	visibility: visible;
}

.modal-overlay--active .modal {
	transform: scale(1) translateY(0);
	opacity: 1;
}

/* Modal Container */
.modal {
	background: #ffffff;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	transform: scale(0.7) translateY(100px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	position: relative;
}

.modal__content {
	
}

/* Modal Header */
.modal__header {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 24px 32px;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}

.modal__title {
	font-size: 24px;
	font-weight: 700;
	color: #111827;
	margin: 0;
	padding-right: 40px;
}

.modal__subtitle {
	font-size: 14px;
	color: #6b7280;
	margin-top: 4px;
}


.modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: rgba(107, 114, 128, 0.1);
	border-radius: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	color: #6b7280;
}

.modal__close:hover {
	background: rgba(239, 68, 68, 0.1);
	color: #ef4444;
	transform: rotate(90deg);
}

.modal__close svg {
	width: 16px;
	height: 16px;
}

.modal__body {
	/* padding: 32px; */
	max-height: 80vh;
	overflow-y: auto;
}

.modal__body::-webkit-scrollbar {
	width: 6px;
}

.modal__body::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 3px;
}

.modal__body::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

.modal__footer {
	background: #f9fafb;
	padding: 10px 32px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.modal__footer.js-center {
	justify-content: center;
}

.modal__footer .btn {
	padding: 10px 20px;
	font-size: 14px;
}

.modal--small {
	max-width: 400px;
}

.modal--large {
	max-width: 1000px;
}

/* Animation Classes */
.fade-in {
	animation: fadeIn 0.3s ease;
}

.fade-out {
	animation: fadeOut 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.bounce-in {
	animation: bounceIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
	0% {
		transform: scale(0.3) translateY(100px);
		opacity: 0;
	}

	50% {
		transform: scale(1.05) translateY(-20px);
	}

	70% {
		transform: scale(0.9) translateY(10px);
	}

	100% {
		transform: scale(1) translateY(0);
		opacity: 1;
	}
}

@media (max-width: 992px) {
	.modal__footer {
		padding: 15px 8px;
	}

	.modal__header {
		padding: 15px 8px;
	}

	.modal__title {
		font-size: 20px;
	}

	.modal__content {
		padding: 15px;
	}

	.modal__close {
		top: 12px;
		right: 10px;

	}
}

/* end moodal */

.register-info {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.heading-modal__banner{
 	line-height: 0; 
}
.heading-modal__banner img{
 	width: 100%; 
  max-height: 360px;
}
.form-control {
    background: white;
    height: 45px;
    padding: 5px 15px;
    border: 0;
    color: #333;
    font-size: 16px;
    width: 100%;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid lightgray;
}

.register-info__label {
    margin-bottom: 4px;
}

.register-info__item {
    margin-bottom: 15px;
	position:relative;
}
.register-info__item .form-control ~ .register-info__label{
	font-size: 13px;
	position: absolute;
	top: -12px;
	left: 20px;
	padding: 0 15px;
	background: white;
	font-weight: 400;
}
.required{
	color: red;
}
.register-info__wbtn {
    text-align: center;
}
.register-info__wbtn .c-btn-01{
    padding: 10px 25px;
}

.heading-modal {
    background: #000;
    padding: 20px 10%;
    text-align: center;
    color: white;
}

.heading-modal__ttl {
    font-size: 24px;
    margin-bottom: 5px;
    /* font-weight: 400; */
}

.heading-modal__desc {}
.register-noti {
    padding: 30px;
}
.register-noti__heading{
	margin-bottom:30px;
}
.register-noti__heading-ttl{
	font-size: 18px;
	margin-bottom: 10px;
}
.modal-noti{
	border-radius: 10px;
}
.arrow-common .slick-arrow svg{
	width: 20px;
	height: 20px;
}