@charset "utf-8";

/* ==================================
   CI Introduction Page Styles
================================== */
.con-p.intro-p {
  color: #222;

  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -1%;
  padding: 0 0 60px;
}

.h5-tit01 {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -2%;
  padding: 0 0 28px;
}

.con-p {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: -2%;
  vertical-align: bottom;
  color: #444444;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.logo-item {
  display: flex;
  flex-direction: column;
}

.logo-type-tit {
  color: #111;
  margin-bottom: 20px;

  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: -2%;
}

/* Boxed Image Container for Logos */
.logo-item .img-box {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 61px 0 51px; /* Generous padding as shown in design */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  box-sizing: border-box;
}

.logo-item .img-box img {
  max-width: 100%;
  height: auto;
}

/* Download Button Group */
.download-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn-ci {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 56px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.btn-ci:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 16px;
  margin-left: 10px;
  background: url("../img/content/ico-download-w.png") no-repeat center / contain;
}

.btn-dark {
  background-color: #1f315b;
}

.btn-blue {
  background-color: #00a3e9;
}

/* ==================================
   Meaning & Color Section Specifics
================================== */
.h4-tit01 {
  /* Ensuring exact design matching */
  padding-bottom: 30px;
  font-size: 32px;
}

.con-box02 {
  padding-bottom: 40px;
}

/* ==================================
   Responsive
================================== */
@media (max-width: 1024px) {
  .logo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logo-item .img-box {
    min-height: auto;
    padding: 60px 40px;
  }

  .download-group {
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-ci {
    width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .logo-type-tit {
    font-size: 20px;
  }

  .h4-tit01 {
    font-size: 26px;
  }
}