/* Reset and Layout Foundations */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
}

.page-wrapper {
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(340px, 620px));
  justify-content: space-between;
  gap: 40px 48px;
  width: 100%;
  max-width: 1500px;
}

.brand-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 42px 34px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
  width: 100%;
}

.brand-card:hover {
  transform: translateY(-2px);
}

.brand-card p,
.brand-card a,
.brand-card h3 {
  font-family: "Inter", Tahoma, Geneva, Verdana, sans-serif !important;
}

.brand-card h3 {
}

.card-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.brand-logo {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid #eaeaea;
  min-height: 100px;
}

.logo-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 75px;
}

.brand-info {
  flex: 1;
}

.brand-info h3 {
  font-size: 1.2rem;
  color: #4a4a4a;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  font-weight: 700;
}

.brand-info p {
  font-size: 0.78rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.more-link {
  font-size: 0.78rem;
  color: #00939d;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.more-link:hover {
  border-bottom-color: #0076a3;
}

.card-dots-top,
.card-dots-bottom {
  position: absolute;
  color: #a5cad6;
  font-size: 11px;
  letter-spacing: 4px;
  line-height: 1;
  user-select: none;
}

.card-dots-top {
  top: 20px;
  right: 25px;
}

.card-dots-bottom {
  bottom: 20px;
  left: 25px;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 620px;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 30px 16px;
  }

  .brand-card {
    padding: 36px 20px;
    border-radius: 16px;
  }

  .card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-logo {
    flex: none;
    width: 100%;
    max-width: 228px;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
    padding-right: 0;
    padding-bottom: 20px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .logo-image {
    max-height: 60px;
  }
}
