/* ==============================================================
   구글 파트너 인증 섹션 스타일
   ============================================================== */

/* 섹션 기본 설정 */
.google-partner-section {
  padding: 120px 0;
  background: linear-gradient(135deg,
    #ffffff 0%,
    #f8f9fa 25%,
    #e8f0fe 50%,  /* 구글 블루 연한 톤 */
    #f8f9fa 75%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
}

.google-partner-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
    rgba(66, 133, 244, 0.1) 0%,  /* 구글 블루 */
    transparent 70%
  );
  border-radius: 50%;
}

/* 섹션 타이틀 */
.google-partner-section .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.google-partner-section .section-title span {
  color: #4285f4;  /* 구글 블루 */
  position: relative;
}

.google-partner-section .section-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: #666;
  text-align: center;
  margin-bottom: 60px;
}

/* 컨텐츠 그리드 */
.google-partner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 왼쪽 영역 */
.google-partner-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.partner-image-wrapper {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(66, 133, 244, 0.15);
}

.partner-certification-image {
  width: 100%;
  height: auto;
  display: block;
}

.certification-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.certification-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.certification-info strong {
  color: #4285f4;
  font-weight: 500;
}

.certification-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.certification-benefits li {
  font-size: 15px;
  color: #666;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.certification-benefits li:last-child {
  border-bottom: none;
}

.certification-benefits li:hover {
  color: #2c2c2c;
  padding-left: 35px;
}

.certification-benefits li i {
  position: absolute;
  left: 0;
  top: 10px;
  color: #34a853;  /* 구글 그린 */
  font-size: 18px;
}

/* 오른쪽 영역 */
.google-partner-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 뉴스 카드 */
.news-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
    #4285f4 25%,   /* 구글 블루 */
    #34a853 50%,   /* 구글 그린 */
    #fbbc04 75%,   /* 구글 옐로우 */
    #ea4335 100%   /* 구글 레드 */
  );
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(66, 133, 244, 0.2);
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.news-badge {
  background: #ea4335;  /* 구글 레드 */
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.news-date {
  font-size: 13px;
  color: #999;
}

.news-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-source {
  font-size: 14px;
  color: #4285f4;
  margin-bottom: 15px;
  font-weight: 500;
}

.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4285f4;
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.news-card:hover .news-link {
  gap: 10px;
}

/* 파트너 혜택 리스트 */
.partner-advantages {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partner-advantages h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-advantages h4::before {
  content: '🏆';
  font-size: 20px;
}

.advantage-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.advantage-item:last-child {
  border-bottom: none;
}

.advantage-item:hover {
  background: #f8f9fa;
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 8px;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon i {
  color: white;
  font-size: 24px;
}

.advantage-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 5px;
}

.advantage-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
  .google-partner-content {
    gap: 60px;
  }

  .google-partner-section {
    padding: 100px 20px;
  }
}

@media (max-width: 768px) {
  .google-partner-section {
    padding: 80px 20px;
  }

  .google-partner-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .google-partner-section .section-title {
    font-size: 32px;
  }

  .google-partner-section .section-desc {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .partner-image-wrapper {
    padding: 20px;
  }

  .certification-info h3 {
    font-size: 20px;
  }

  .news-card h4 {
    font-size: 18px;
  }

  .advantage-item {
    padding: 12px 0;
  }

  .advantage-icon {
    width: 40px;
    height: 40px;
  }

  .advantage-icon i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .google-partner-section {
    padding: 60px 15px;
  }

  .google-partner-section .section-title {
    font-size: 28px;
  }

  .certification-benefits li {
    font-size: 14px;
    padding: 8px 0 8px 28px;
  }

  .news-card {
    padding: 20px;
  }

  .partner-advantages {
    padding: 20px;
  }
}

/* 애니메이션 효과 (AOS 보강) */
[data-aos="fade-up"] .google-partner-section {
  transition: all 0.6s ease;
}

[data-aos="fade-right"] .google-partner-left {
  transition: all 0.6s ease;
}

[data-aos="fade-left"] .google-partner-right {
  transition: all 0.6s ease;
}