/* --- Home Page Specific Styles --- */

/* Hero Main */
.hero-main {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container-v2 {
  width: 100%;
  padding-left: 80px;
  display: flex;
  align-items: center;
}

.hero-content-v2 {
  width: 600px;
}

.hero-title-v3 {
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  letter-spacing: -2px;
  line-height: 0.9;
}

.hero-title-v3 span {
  display: block;
}

.hero-title-v3 .line-1 {
  font-size: 58px;
  font-weight: 300;
  margin-bottom: 5px;
}

.hero-title-v3 .line-2 {
  font-size: 89px;
  display: flex !important;
  align-items: baseline;
  gap: 15px;
  margin-bottom: -5px;
}

.hero-title-v3 .line-2 .thin {
  display: inline;
  font-weight: 300;
}

.hero-title-v3 .line-2 .bold {
  display: inline;
  font-weight: 900;
  letter-spacing: -3px;
}

.hero-title-v3 .line-3 {
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -4px;
}

.hero-btns-v2 {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-hero-black, .btn-hero-yellow {
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-hero-black {
  background: #1a1a1a;
  color: #fff;
}

.btn-hero-black:hover {
  background: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-hero-yellow {
  background: var(--color-primary);
  color: #000;
  border: 2.5px solid #1A1A1A;
}

.btn-hero-yellow:hover {
  background: #fdb513;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(253, 181, 19, 0.3);
}


/* --- Brands Slider Section (RESTORED) --- */
.brands-slider-section {
  padding: 40px 0;
  background: #fff;
  position: relative;
}

.brands-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  line-height: 48px;
}

.brands-heading-text {
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 400;
  white-space: nowrap;
}

.brands-heading-icon {
  width: 82.617px;
  height: 40px;
  opacity: 0.777;
  background: url('../images/icone_cimed.png') transparent 50% / contain no-repeat;
  flex-shrink: 0;
}

.brands-rotating-word {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding-left: 5px;
  transform: translateY(22px);
  margin-left: -5px; 
}

.rotating-item {
  color: #FFC600;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}

.rotating-item.active {
  position: relative;
  left: 0;
  opacity: 0.8;
  transform: translateY(-50%);
}

.brands-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.brands-slider-viewport {
  flex: 1;
  overflow: hidden;
}

.brands-slider-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: slide-brands 60s linear infinite;
  width: max-content;
}

.brands-slider-track:hover {
  animation-play-state: paused;
}

.brands-slider-track img {
  height: 118.992px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.brands-slider-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes slide-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* --- Commitment Section (RESTORED) --- */
.commitment-section {
  width: 100%;
  padding: 60px 0;
  background-color: #FFC600;
  position: relative;
  z-index: 4;
  display: block;
  overflow: hidden;
}

.commitment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/Container.png') center/cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.commitment-container {
  width: 1011px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commitment-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.829px;
  margin-bottom: 24px;
}

.commitment-text {
  width: 100%;
  max-width: 805px;
  color: #333;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.6px;
  letter-spacing: -0.439px;
  margin: 0 auto;
}

.commitment-stats {
  display: flex;
  width: 100%;
  max-width: 971px;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.commitment-stat-card {
  display: flex;
  width: 280px;
  padding: 32px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.20);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-number {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: -1.939px;
}

.stat-label {
  color: #333;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: -0.312px;
}

.commitment-logo-svg {
  position: absolute;
  bottom: 0;
  left: -200px;
  width: 407px;
  height: 442px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.commitment-logo-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

.btn-history {
  display: flex !important;
  width: fit-content;
  margin: 48px auto 0;
  padding: 17.5px 40px 18.5px 41px;
  justify-content: center;
  align-items: center;
  gap: 12.18px;
  border-radius: 12px;
  background: #1A1A1A;
  color: #FFF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  transition: opacity 0.3s;
}

.btn-history:hover {
  opacity: 0.9;
}


/* --- Newsletter Section (RESTORED) --- */
.newsletter-section {
  width: 100%;
  min-height: 350px;
  padding: 60px 0;
  background: linear-gradient(135deg, #FFC600 0%, #FFC91C 7.14%, #FFCC2A 14.29%, #FFCE36 21.43%, #FFD13F 28.57%, #FFD447 35.71%, #FFD74F 42.86%, #FFDA56 50%, #FFDC5D 57.14%, #FFDF63 64.29%, #FFE269 71.43%, #FFE56F 78.57%, #FFE875 85.71%, #FFEA7A 92.86%, #FFED80 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-container {
  width: 1011px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.newsletter-icon-box {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #1A1A1A;
  margin-bottom: 24.5px;
}

.newsletter-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 40px;
  letter-spacing: 0.369px;
  margin: 0 0 16px 0;
}

.newsletter-description {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.439px;
  margin: 0 0 40px 0;
}

.newsletter-form-box {
  display: flex;
  width: 100%;
  max-width: 720px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
  box-sizing: border-box;
}

.newsletter-input-row {
  display: flex;
  width: 100%;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.newsletter-input-row input {
  flex: 1;
  height: 56px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1A1A1A;
  outline: none;
}

.newsletter-input-row input:focus {
  border-color: #FFC600;
}

.newsletter-input-row button {
  height: 56px;
  padding: 0 40px;
  background: #1A1A1A;
  color: #FFF;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-input-row button:hover {
  background: #333;
  transform: translateY(-2px);
}

.newsletter-privacy {
  color: #717171;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
  text-align: left;
  width: 100%;
  margin-top: 10px;
}

.newsletter-privacy a {
  color: #1A1A1A;
  text-decoration: underline;
}


/* --- Search Section (RESTORED) --- */
.search-section {
  width: 100%;
  padding: 40px 0;
  background-color: #F9FAFB;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-container {
  width: 1011px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.848px;
  margin-bottom: 40px;
}

.search-bar-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 48px;
}

.search-input-wrapper {
  display: flex !important;
  height: 64px;
  border: 2px solid #E5E5E5;
  border-radius: 14px;
  padding: 0 130px 0 56px;
  position: relative;
  background: #FFF;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  align-items: center;
  box-sizing: border-box;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 20px;
}

.search-input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1A1A1A;
}

.search-input::placeholder {
  color: #999;
}

.btn-search-main {
  background: #FDB913;
  color: #1A1A1A;
  position: absolute;
  right: 10px;
  top: 8px;
  bottom: 8px;
  padding: 0 28px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px 0 rgba(253, 185, 19, 0.20);
}

.btn-search-main:hover {
  background: #FDB913;
  opacity: 0.9;
}

.categories-label {
  color: #999;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.categories-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.category-tag {
  display: flex;
  height: 44px;
  padding: 0 24px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1.5px solid #E0E0E0;
  background: #FFF;
  text-decoration: none;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-tag:hover {
  border-color: #FFC600;
  transform: translateY(-2px);
}

/* --- Comments Ticker (RESTORED) --- */
.comments-section {
  background-color: #FFC600;
  width: 100%;
  padding: 32px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.comments-container {
  width: 1011px;
  overflow: hidden;
}

.comments-track {
  display: flex;
  gap: 120px;
  animation: slide-comments 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.comment-text {
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.011px;
}

@keyframes slide-comments {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.category-tag.more-tag {
  font-weight: 700;
  color: #FFC600;
  border-color: transparent;
}

/* --- Commitment Section (RESTORED) --- */
.commitment-section {
  width: 100%;
  padding: 120px 0;
  background-color: #FFC600;
  position: relative;
  z-index: 4;
  display: block;
  overflow: hidden;
}

.commitment-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/Container.png') center/cover no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.commitment-container {
  width: 1011px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.commitment-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.829px;
  margin-bottom: 24px;
}

.commitment-text {
  width: 805px;
  color: #333;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30.6px;
  letter-spacing: -0.439px;
  margin: 0 auto;
}

.commitment-text.second-text {
  width: 816px;
  margin-top: 12px;
}

.commitment-stats {
  display: flex;
  width: 971px;
  gap: 60px;
  margin-top: 48px;
  justify-content: center;
}

.commitment-stat-card {
  display: flex;
  width: 283.664px;
  height: 158.398px;
  padding: 32px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.20);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-number {
  color: #1A1A1A;
  font-size: 56px;
  font-weight: 800;
  line-height: 56px;
  letter-spacing: -1.939px;
}

.stat-label {
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.commitment-logo-svg {
  position: absolute;
  bottom: 0;
  left: -180px;
  width: 763px;
  height: 441.622px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.commitment-logo-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}



/* --- Products Section --- */
.products-section {
  width: 100%;
  padding: 60px 0;
  background-color: rgba(255, 198, 0, 0.05);
}

.products-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 100px 20px;
  background-color: rgba(255, 198, 0, 0.10); /* 90% branco, 10% amarelo */
  min-height: 973px;
  box-sizing: border-box;
}

.products-container {
  width: 1011px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.products-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.848px;
  margin-bottom: 24px;
}

.products-subtitle {
  color: #666;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 29.25px;
  letter-spacing: -0.439px;
  margin-bottom: 55.75px;
}

.products-slider-v2 {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-grid-v2 {
  display: flex;
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.product-card-v2 {
  background: #FFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  height: auto;
  width: calc(25% - 18px); /* 4 columns */
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.product-info-v2 {
  display: flex;
  width: 100%;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
  margin-top: auto;
}

.product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #FFC600;
  color: #1A1A1A;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-img-box {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.product-img-box img {
  width: 230px;
  height: 230px;
  flex-shrink: 0;
  object-fit: contain;
}

.product-name-v2 {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  text-align: left;
  margin: 0;
}

.btn-product-more {
  display: flex;
  width: 100%;
  padding: 13.5px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #1A1A1A;
  color: #FFF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: -0.234px;
  margin-top: auto;
  transition: background 0.3s;
  box-sizing: border-box;
}

.btn-product-more:hover {
  background: #333;
}

.product-arrow {
  position: absolute;
  display: inline-flex;
  padding: 12px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 198, 0, 0.90);
  cursor: pointer;
  z-index: 10;
  color: #1A1A1A;
  border: none;
  transition: background 0.3s;
}

.product-arrow:hover {
  background: rgba(255, 198, 0, 1);
}

.product-arrow-left { left: -64px; }
.product-arrow-right { right: -64px; }

.product-dots-row {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E5E5;
  cursor: pointer;
  transition: all 0.3s;
}

.product-dot.active {
  background: #1A1A1A;
  width: 24px;
  border-radius: 4px;
}

.btn-view-all-products {
  display: inline-flex;
  padding: 15.5px 40px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: #1A1A1A;
  color: #FFF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-top: 48px;
  transition: opacity 0.3s;
}

.btn-view-all-products:hover {
  opacity: 0.9;
}

/* Responsive Products Grid */
@media (max-width: 1200px) {
  .products-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .product-card-v2 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-grid-v2 {
    grid-template-columns: 1fr;
  }
  .products-title {
    font-size: 32px;
    line-height: normal;
  }
  .product-arrow {
    display: none;
  }
}


/* --- Different Section (RESTORED) --- */
.different-section {
  width: 100%;
  padding: 60px 0;
  background-color: #FFFFFF;
}

.different-container {
  width: 1011px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.different-logo-watermark {
  position: absolute;
  top: 0;
  left: 30px;
  width: 100px;
  height: 100px;
  opacity: 0.08;
  background: url('../images/icone_cimed.png') center/contain no-repeat;
  pointer-events: none;
}

.different-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.different-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 64px;
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.different-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.different-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.icon-circle-v2 {
  width: 80px;
  height: 80px;
  background: #FFF8E7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.different-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.different-card-text {
  color: #666;
  line-height: 1.6;
}

/* --- News Section --- */
.news-section {
  width: 100%;
  padding: 100px 0;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.news-container {
  width: 1011px;
  max-width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

.news-header {
  text-align: center;
}

.news-title {
  color: #1A1A1A;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.608px;
  margin: 0;
}

.news-subtitle {
  color: #666;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 16px;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  justify-content: center;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06), 0 4px 12px 0 rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.6s ease, filter 0.6s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-image-wrapper {
  position: relative;
  width: 100%;
  height: 256px;
  overflow: hidden;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  letter-spacing: 0.5px;
}

.news-tag.innovation {
  color: #8A2BE2;
}

.news-tag.institutional {
  color: #0077B5;
}

.news-content {
  padding: 24px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  width: 100%;
}

.news-card-title {
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 27.5px;
  letter-spacing: -0.949px;
  margin-bottom: 16px;
  text-align: left;
}

.news-meta {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-date {
  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.news-source {
  color: #0A66C2;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-link {
  color: #0A66C2;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: color 0.3s;
}

.news-link:hover {
  color: #004182;
}

.btn-linkedin {
  display: flex;
  height: 60px;
  padding: 0 42px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  border: 2px solid #FFC600;
  background: #FFC600;
  color: #1A1A1A;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.3s, transform 0.3s;
  margin: 24px auto 0;
}

.btn-linkedin:hover {
  background: #FFD633;
  transform: scale(1.02);
}

/* Responsive News */
@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .news-title {
    font-size: 36px;
    line-height: 1.2;
  }
}

@media (max-width: 575px) {
  .news-section {
    padding: 60px 0;
  }
  
  .news-container {
    gap: 40px;
  }
  
  .news-header {
    margin-bottom: 0;
  }
  
  .news-card-title {
    font-size: 18px;
  }
}
