/*
 Theme Name:   Hoinghi Theme Child
 Description:  Child Theme của Hoinghi Theme
 Author:       Tên bạn
 Template:     hoinghi-theme
 Version:      1.0.0
*/

/* style.css */
:root {
  --primary: #1a3a5c;
  --primary-light: #2563a8;
  --primary-dark: #0f2440;
  --accent: #e8a838;
  --accent-light: #f0c060;
  --accent-dark: #d49520;
  --success: #10b981;
  --bg-light: #f0f4f8;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-body: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  /* --border: rgba(0, 36, 68, 0.1); */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--surface);
  color: var(--primary-dark);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}
.web-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.btn-center {
  max-width: 200px !important;
}

.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-id-35 .single-layout {
  max-width: 100% !important;
  padding: 64px 0 0;
}

/* header - footer */
.site-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.site-logo .logo-icon {
  width: auto;
  height: auto;
  border-radius: none;
  background: none;
  box-shadow: none;
}
.site-logo .logo-icon img {
  width: 95px;
}
.site-logo .logo-text {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 0;
  line-height: 100%;
  margin-top: 2px;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.product-brand img {
  width: 80px;
}

@media only screen and (max-width: 768px) {
  .site-header .site-logo .logo-icon img {
    width: 80px;
  }
  .site-header .site-logo .logo-text {
    font-size: 10px;
  }
  .page-banner h1 {
    font-size: 24px;
  }
  .page-banner {
    padding: 100px 0 60px;
  }
  .main-nav {
    transform: translateY(-130%);
  }
  .web-action {
    margin-top: 32px;
  }
}

/* hero section */
.hero-section {
  position: relative;
  justify-content: flex-start;
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section .hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 36, 68, 0.7);
}

@media only screen and (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    align-items: flex-start;
  }
}

/* Challenges Section */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .sub {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 12px;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: masonry;
  gap: 30px;
}

.challenge-card {
  padding: 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  border: 1px solid rgba(0, 36, 68, 0.1);
  transition: all 0.3s linear;
}

.challenge-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bg-light);
}

.icon-box {
  width: 56px;
  height: 56px;
  background: rgba(0, 36, 68, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.challenge-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.challenge-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media only screen and (max-width: 1530px) {
  .section {
    padding: 80px 0;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .challenges-grid {
    gap: 24px;
  }
}

@media only screen and (max-width: 1280px) {
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .challenges-grid {
    gap: 24px;
  }
  .challenge-card {
    padding: 20px;
  }
  .icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  .challenge-card h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header .sub {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

@media only screen and (max-width: 639px) {
  .section-header h2 {
    font-size: 20px;
  }
  .challenges-grid {
    gap: 16px;
  }
  .challenge-card {
    text-align: center;
    border-radius: 12px;
  }
  .icon-box {
    margin: 0 auto;
    margin-bottom: 16px;
  }
}

/* Solution Section */
.solution {
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.solution::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #2563a820;
  z-index: 1;
  transform: skewX(-10deg) translateX(50%);
}

.solution-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  gap: 16px;
}

.solution-header .left {
  max-width: 50%;
}
.solution-header .left .sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.solution-header .left h2 {
  font-weight: 800;
  font-size: 42px;
  color: var(--primary);
  line-height: 120%;
  margin-top: 12px;
}

.solution-header .right {
  width: 100%;
  max-width: 540px;
  color: var(--text-body);
  font-size: 1.13rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: masonry;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.solution-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 32px;
  padding-bottom: 54px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.solution-card .icon {
  color: var(--accent);
  margin-bottom: 30px;
}

.solution-card h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--primary);
}

.solution-card p {
  color: var(--text-body);
  margin-bottom: 24px;
}

.solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--primary-light);
}

.solution-list li i {
  color: var(--accent);
}

@media only screen and (max-width: 1530px) {
  .solution-header {
    align-items: center;
  }
  .solution-header .left h2 {
    font-size: 36px;
  }
  .solution-header .right {
    font-size: 16pxp;
  }
}

@media only screen and (max-width: 1280px) {
  .solution-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: center;
    justify-content: center;
  }
  .solution-header .left {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .solution-header .left h2 {
    font-size: 24px;
  }
  .solution-header .right {
    max-width: 100%;
    font-size: 16px;
  }
  .solution-header {
    margin-bottom: 60px;
  }
  .solution-grid {
    gap: 24px;
  }
  .solution-card {
    padding: 24px;
  }
  .solution-card .icon {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .solution-header {
    margin-bottom: 40px;
    gap: 16px;
  }
  .solution-header .left .sub {
    font-size: 12px;
  }
}

@media only screen and (max-width: 639px) {
  .solution-header {
    margin-bottom: 32px;
  }
  .solution-header .left h2 {
    font-size: 20px;
  }
  .solution-header .right {
    font-size: 14px;
  }
  .solution-grid {
    gap: 20px;
  }
  .solution-card .icon {
    margin-bottom: 16px;
  }
  .solution-card p {
    margin-bottom: 20px;
  }
  .solution-card {
    padding: 20px;
  }
  .solution-card .icon img {
    height: 32px;
  }
  .solution-card {
    border-radius: 12px;
  }
}

/* Video Section */
.video-section {
  background: linear-gradient(135deg, #0f2440, #1a3a5c, #2563a8);
  color: var(--bg-white);
  text-align: center;
}

.video-section h2 {
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 700;
}

.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(131, 85, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media only screen and (max-width: 1530px) {
  .video-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1280px) {
  .video-section h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 639px) {
  .video-section h2 {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: masonry;
  gap: 48px;
}

.stat-item {
  text-align: center;
  width: 100%;
  padding: 32px;
}

.stat-circle {
  width: 192px;
  height: 192px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-item .stat-desc {
  margin-top: 16px;
  font-size: 1rem;
}

.stat-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-circle .val {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
}

.stat-circle .unit {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-body);
  text-transform: uppercase;
}

@media only screen and (max-width: 1280px) {
  .stats-grid {
    gap: 12px;
  }
  .stat-item {
    padding: 24px;
  }
  .stat-circle {
    width: 150px;
    height: 150px;
    margin-bottom: 16px;
  }
  .stat-item h3 {
    font-size: 1.25rem;
  }
  .stat-circle .val {
    font-size: 28px;
  }
  .material-symbols-outlined {
    font-size: 3rem !important;
  }
}

@media only screen and (max-width: 639px) {
  .stats-grid {
    gap: 0;
  }
  .stat-item {
    padding: 16px 20px;
  }
  .stat-circle {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }
  .stat-item h3 {
    font-size: 1.125rem;
  }
  .stat-circle .val {
    font-size: 24px;
  }
}

/* Case Study */
.case-study-section {
  background: var(--bg-white);
}
.case-study {
  background-image: url("/wp-content/uploads/case-study-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  border-radius: 48px;
  padding: 80px;
}

/* .case-study::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("https://lh3.googleusercontent.com/aida-public/AB6AXuAtv9-yTPBS7GDGc1ZU3ypNeBo6rH0cUx16WaVrFvKiGEsArT1pMuWjNTibuoCkB_JC_FWmOAs8Tcswbexnz7bWpYgtYDvxDEgb7zx-WDPMegzu6Q8g81mOWqJSGr3JQlLkMF5XtKR3x3tj0J8FvYkNc1W1mBsQVj1YAjIKnt_9GatmgIhv9is_nvBtgRBPayUmZ0TnKmoSap4w98AlI0t2s_uqEV_svTT-BQTFiGjAN033O2I0brpHVqfcI0tpweWf7b4os_Rasx4")
    no-referrer;
  background-size: cover;
  opacity: 0.15;
} */

.case-content {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.case-content .badge {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 12px;
  display: block;
}

.case-content h2 {
  color: var(--bg-white);
  font-size: 2.25rem;
  margin-bottom: 16px;
  line-height: 130%;
}

.case-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 24px;
  padding: 16px 0;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.case-stat h5 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 2px;
  font-weight: 400;
}

.case-stat .num {
  color: var(--bg-white);
  font-size: 1.875rem;
  font-weight: 900;
}
@media only screen and (max-width: 1280px) {
  .case-study {
    padding: 40px;
  }
  .case-content h2 {
    font-size: 1.5rem;
    line-height: 150%;
  }
  .case-content p {
    font-size: 1rem;
  }
  .case-stats {
    gap: 20px;
    padding-top: 24px;
  }
  .case-stat .num {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 639px) {
  .case-study {
    padding: 32px 20px;
    border-radius: 24px;
  }
  .case-content h2 {
    font-size: 20px;
  }
  .case-content p {
    font-size: 0.875rem;
  }
  .case-stats {
    gap: 16px;
    padding-top: 16px;
  }
  .case-stat .num {
    font-size: 1.25rem;
  }
}

@media screen {
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 80px;
}

.process-item {
  text-align: center;
  position: relative;
  padding: 0;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  padding: 4px;
  background: #f8f9ff;
  margin: 0 auto;
  box-shadow: 0px 8px 10px -6px #0000001a;

  box-shadow: 0px 20px 25px -5px #0000001a;
}

.process-num span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
}
.process-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 18px;
  padding-top: 6px;
  border-top: 1px solid #c3c6cf4d;
}

.process-item p {
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 0 16px;
}

@media only screen and (max-width: 639px) {
  .process-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: masonry;
    margin-top: 60px;
  }
  .process-item {
    padding-bottom: 24px;
  }
  .process-item:nth-child(3),
  .process-item:nth-child(4) {
    padding-bottom: 0;
  }
}

/* Form Section */
.form-section {
  background: var(--bg-light);
}
/* .form-card {
  background: var(--bg-white);
  border-radius: 48px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.form-info {
  flex: 1;
  padding: 80px;
}

.form-info h2 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  line-height: 130%;
}

.form-info p {
  color: var(--text-body);
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(254, 174, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.info-text h5 {
  font-weight: 700;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.form-fields {
  flex: 1;
  background: var(--surface-container);
  padding: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--text-body);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  border-bottom-color: var(--accent);
  box-shadow: none;
}
.form-group textarea {
  min-height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-main);
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  transition: all var(--transition);
}
.btn-submit {
  width: 100%;
}

.btn-primary {
  color: white;
  box-shadow: rgba(232, 168, 56, 0.35) 0px 4px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: rgba(232, 168, 56, 0.5) 0px 8px 30px;
} */

@media only screen and (max-width: 1530px) {
  .form-info h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1280px) {
  .form-info h2 {
    font-size: 24px;
  }

  .form-info,
  .form-fields {
    padding: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .form-card {
    flex-direction: column;
    padding: 32px 20px;
    gap: 32px;
  }
  .form-info,
  .form-fields {
    padding: 0;
  }
}
@media only screen and (max-width: 639px) {
  .form-card {
    flex-direction: column;
    border-radius: 24px;
  }

  .form-info h2 {
    font-size: 20px;
  }
  .form-info p {
    margin-bottom: 20px;
  }
  .info-text p {
    margin-bottom: 0;
  }
  .info-item {
    gap: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group {
    margin-bottom: 20px;
  }
}
/* bytesoft-faq */
.faq-section {
  padding-top: 40px;
}
.faq-section__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.faq-section__item {
  width: 100%;
  border-top: 1px solid var(--border);
}
.faq-section__question {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
  cursor: pointer;
}

.faq-section__answer {
  display: flex;
  gap: 140px;
}
.faq-section__number {
  font-size: 24px;
  color: var(--primary);
}

.faq-section__question-text {
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0;
  transition: all 0.3s linear;
}
.faq-section__answer-text {
  font-size: 16px;
  color: var(--text-body);
  /* opacity: 0; */
  display: none;
  transition: all 0.3s linear;
  height: 0;
  overflow: hidden;
}
.faq-section__answer-content ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}
.faq-close {
  opacity: 0;
  display: none;
  transition: all 0.3s linear;
}
.faq-section__item--active .faq-section__question-text {
  font-weight: 600;
  color: var(--G1);
  margin-bottom: 10px;
}
.faq-section__item--active .faq-section__answer-text {
  opacity: 1;
  display: block;
  height: auto;
}
.faq-section__item--active .faq-close {
  opacity: 1;
  display: block;
}

.faq-section__item--active .faq-open {
  opacity: 0;
  display: none;
}

/* 2xl */
@media only screen and (max-width: 1536px) {
  .faq-section {
    padding: 70px 15px;
  }
  .faq-section__title {
    font-size: 32px;
    max-width: 480px;
  }
}
/* xl */
@media only screen and (max-width: 1280px) {
  .faq-section {
    padding: 50px 15px;
  }
  .faq-section__title {
    font-size: 28px;
    max-width: 420px;
  }
  .faq-section__list {
    margin-top: 40px;
  }
  .faq-section__item--active .faq-section__question-text {
    font-size: 20px;
  }
  .faq-section__number {
    font-size: 20px;
  }
  .faq-section__answer {
    gap: 50px;
  }
  .faq-section__question-text {
    font-size: 20px;
  }
  .faq-section__question {
    padding: 20px 0;
  }
}
/* lg */
@media only screen and (max-width: 1080px) {
}
/* md */
@media only screen and (max-width: 768px) {
  .faq-section {
    padding: 30px 15px;
  }
  .faq-section__title {
    font-size: 24px;
    max-width: 350px;
  }
  .faq-section__question {
    gap: 20px;
  }
  .faq-section__answer {
    gap: 24px;
  }
  .faq-section__item--active .faq-section__answer-text {
    font-size: 14px;
  }
  .faq-section__icon svg {
    width: 24px;
  }
  .faq-section__question {
    padding: 16px 0;
  }
}
/* sm */
@media only screen and (max-width: 639px) {
  .faq-section__title {
    font-size: 20px;
    max-width: 300px;
  }
  .faq-section__answer {
    gap: 16px;
  }
  .faq-section__question-text {
    font-size: 18px;
  }
  .faq-section__number {
    font-size: 18px;
  }
}

/* new */
.news-section {
}

.section-desc {
  margin-top: 24px;
  color: var(--text-body);
}

/* toast */
#toast {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 999999;
}

.toast {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  padding: 20px 0;
  min-width: 400px;
  max-width: 450px;
  border-left: 4px solid;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.08);
  transition: all linear 0.3s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(calc(100% + 32px));
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.toast--success {
  border-color: #47d864;
}

.toast--success .toast__icon {
  color: #47d864;
}

.toast--info {
  border-color: #2f86eb;
}

.toast--info .toast__icon {
  color: #2f86eb;
}

.toast--warning {
  border-color: #ffc021;
}

.toast--warning .toast__icon {
  color: #ffc021;
}

.toast--error {
  border-color: #ff623d;
}

.toast--error .toast__icon {
  color: #ff623d;
}

.toast + .toast {
  margin-top: 24px;
}

.toast__icon {
  font-size: 24px;
}

.toast__icon,
.toast__close {
  padding: 0 16px;
}

.toast__body {
  flex-grow: 1;
}

.toast__title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.toast__msg {
  font-size: 14px;
  color: #888;
  margin-top: 6px;
  line-height: 1.5;
}

.toast__close {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  #toast {
    top: 16px;
    right: 8px;
  }
  .toast {
    min-width: 320px;
    max-width: 320px;
    padding: 16px 0;
  }
  .toast__close {
    padding-left: 0;
  }
}

/* blog-posts */

.blog-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: block;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card .card-thumb {
  position: relative;

  height: 200px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .card-thumb img {
  transform: scale(1.08);
}

.cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: rgba(26, 58, 92, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-body {
  padding: 24px;
}

@media only screen and (max-width: 639px) {
  .blog-posts {
    grid-template-columns: 1fr;
  }
  .blog-card .card-body {
    padding: 20px 16px;
  }
}

.single-layout {
  max-width: 1200px;
}

/* card-wrap */

.page-id-27 .page-banner {
  display: none;
}
.main-thank {
  height: 100%;
  width: 100%;
  position: fixed;
  padding: 40px 15px;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: auto;
}
.main-module {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.card-wrap {
  width: 100%;
  max-width: 680px;
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-wrap .card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ─── CARD HERO ─── */
.card-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 60%,
    var(--primary-light) 100%
  );
  padding: 52px 48px 48px;
  text-align: center;
  overflow: hidden;
}
.card-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(232, 168, 56, 0.18) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 40%
    );
}
/* decorative arcs */
.card-hero::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.success-ring {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
}
.ring-outer {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 2.4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 168, 56, 0.25);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(232, 168, 56, 0);
  }
}
.ring-inner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 168, 56, 0.5);
  animation: pop-in 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes pop-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.ring-inner svg {
  width: 32px;
  height: 32px;
}

.hero-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
  animation: fade-up 0.5s 0.5s ease both;
  margin-bottom: 0 !important;
}
.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  animation: fade-up 0.5s 0.55s ease both;
  margin-bottom: 0;
}
.hero-sub {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 10px;
  animation: fade-up 0.5s 0.6s ease both;
  margin-bottom: 0 !important;
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── CARD BODY ─── */
.card-body {
  padding: 40px 20px;
}

/* thank-you message */
.message-box {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
  border: 1px solid rgba(37, 99, 168, 0.12);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 auto;
  margin-bottom: 32px;
  animation: fade-up 0.5s 0.7s ease both;
  max-width: 582px;
}
.message-box p {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 0 !important;
}
.message-box strong {
  color: var(--primary);
  font-weight: 600;
}

/* info grid */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
@media (max-width: 520px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
  border: none;
}

/* CTA */
.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fade-up 0.5s 1.15s ease both;
}
.card-wrap .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all var(--transition);
}
.card-wrap .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 58, 92, 0.3);
  width: 100%;
}
.card-wrap .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(26, 58, 92, 0.4);
  transform: translateY(-1px);
}

/* lien-he */
.contact-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 5% 10%,
      rgba(37, 99, 168, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 95% 90%,
      rgba(232, 168, 56, 0.09) 0%,
      transparent 50%
    ),
    var(--bg-light);
}

/* ── PAGE WRAPPER ── */
.contact-page {
  position: relative;
  z-index: 5;
}

/* ── SECTION HEADING ── */
.section-head {
  text-align: center;
  margin-bottom: 48px;
  animation: fade-up 0.6s 0.1s ease both;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  display: block;
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--primary-light));
}
.section-eyebrow::after {
  transform: scaleX(-1);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 0;
}
.section-title em {
  font-style: normal;
  color: var(--primary-light);
}
.section-head .section-desc {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-body);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* ── MAIN CARD ── */
.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 390px 1fr;
  overflow: hidden;
  animation: fade-up 0.6s 0.2s ease both;
}
@media (max-width: 860px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
}

/* ── LEFT PANEL ── */
.left-panel {
  position: relative;
  background: linear-gradient(
    160deg,
    var(--primary-dark) 0%,
    var(--primary) 55%,
    var(--primary-light) 100%
  );
  padding: 48px 30px;
  overflow: hidden;
}
.left-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(232, 168, 56, 0.18) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    );
}
/* decorative circles */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.deco-c1 {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
}
.deco-c2 {
  width: 160px;
  height: 160px;
  bottom: 40px;
  left: -50px;
}

.panel-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.panel-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.35;
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.panel-sub {
  position: relative;
  z-index: 1;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 32px !important;
}

/* contact items */
.contact-items {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex !important;
  gap: 16px;
  align-items: flex-start;
  width: auto !important;
  height: auto !important;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.ci-icon img {
  width: 20px !important;
  height: auto !important;
  object-fit: contain;
}
.contact-item:hover .ci-icon {
  background: rgba(232, 168, 56, 0.2);
}
.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-light);
}
.ci-content {
}
.ci-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px !important;
}
.ci-value {
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 3px !important;
}
.ci-value a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 0 !important;
}
.ci-value a:hover {
  color: var(--accent-light);
}

.panel-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.social-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.soc-btn:hover {
  background: rgba(232, 168, 56, 0.25);
  border-color: rgba(232, 168, 56, 0.4);
  transform: translateY(-2px);
}
.soc-btn svg {
  width: 17px;
  height: 17px;
  stroke: rgba(255, 255, 255, 0.7);
}

/* ── RIGHT PANEL (FORM) ── */
.right-panel {
  padding: 48px 48px 44px;
}
@media (max-width: 640px) {
  .right-panel {
    padding: 32px 20px;
  }
  .left-panel {
    padding: 32px 20px;
  }
}

.form-header {
  margin-bottom: 30px;
}
.form-title {
  font-size: 20px !important;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 !important;
  margin-bottom: 5px !important;
}
.form-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0 !important;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.03em;
  margin-bottom: 0;
}
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}
.input-wrap.textarea-wrap svg {
  top: 15px;
  transform: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.form-group .form-input::placeholder {
  color: var(--text-muted);
}
.form-group input:focus {
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37, 99, 168, 0.12);
}
.form-group textarea.form-input {
  resize: vertical;
  min-height: 120px;
  padding-top: 12px;
  line-height: 1.6;
}

/* recaptcha fake */
.recaptcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 4px;
}
.recaptcha-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.rc-checkbox.checked {
  background: var(--success);
  border-color: var(--success);
}
.rc-checkbox.checked svg {
  display: block;
}
.rc-checkbox svg {
  display: none;
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.rc-label {
  font-size: 14px;
  color: var(--text-dark);
  user-select: none;
}
.rc-right {
  text-align: right;
}
.rc-logo {
  font-size: 9px;
  color: var(--text-muted);
}
.rc-logo strong {
  display: block;
  font-size: 13px;
  color: #4a90d9;
}

/* submit btn */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 58, 92, 0.28);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 60%
  );
}
.btn-submit:hover {
  box-shadow: 0 6px 22px rgba(26, 58, 92, 0.38);
  transform: translateY(-1px);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit svg {
  width: 18px;
  height: 18px;
}

.form-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form-note a {
  color: var(--primary-light);
  text-decoration: none;
}

/* ── MAP SECTION ── */
.map-section {
  position: relative;
  z-index: 5;
  margin-top: 56px;
}
.map-wrapper {
  position: relative;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 300px;
}
.map-pin {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}
.map-addr-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.map-addr-val {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* .single-layout */
.single-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
}

/* Sidebar Styles */
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-contact-card,
.sidebar-recent-posts {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: var(--radius, 12px);
  padding: 24px 20px;
}

.sidebar-contact-card {
  text-align: center;
}

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary, #1a3a5c);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.sidebar-contact-card .sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent, #1a3a5c);
  border-radius: 4px;
}

.sidebar-contact-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 8px;
}

.btn-contact {
  height: 44px;
  max-width: 200px;
  margin: 0 auto;
}
.sidebar-recent-posts {
  position: sticky;
  top: 100px;
}
.sidebar-recent-posts .sidebar-title {
  display: block;
  text-align: center;
}

.sidebar-divider {
  height: 1px;
  background: var(--border, #e2e8f0);
  margin: 0 0 24px 0;
  position: relative;
  width: 100%;
  overflow: visible;
}

.sidebar-divider::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0px;
  width: 4px;
  height: 4px;
  background: var(--border, #e2e8f0);
  border-radius: 50%;
}

.sidebar-divider::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0px;
  width: 4px;
  height: 4px;
  background: var(--border, #e2e8f0);
  border-radius: 50%;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recent-post-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.recent-thumb {
  width: 80px;
  min-width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
}

.recent-thumb img,
.recent-thumb svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-thumb img {
  transform: scale(1.05);
}

.recent-info h4 {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.recent-info h4 a {
  color: var(--text-dark, #1e293b);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-info h4 a:hover {
  color: var(--primary-light, #2563a8);
}

@media only screen and (max-width: 980px) {
  .single-content {
    grid-template-columns: 1fr;
  }
  .single-sidebar {
    display: none;
  }
}
