:root {
  --ws-primary: #1d92bd;
  --ws-primary-dark: #126b8e;
  --ws-primary-soft: #eaf7fc;
  --ws-dark: #102a43;
  --ws-text: #486581;
  --ws-border: #dce8ef;
  --ws-surface: #ffffff;
  --ws-bg: #f7fbfd;
}

.ws-blog-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 84px;
  background:
    radial-gradient(circle at 85% 25%, rgba(117, 201, 236, 0.32), transparent 28%),
    linear-gradient(135deg, #0e5f80 0%, #1d92bd 58%, #67c3e7 100%);
}

.ws-blog-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.ws-blog-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 70px;
}

.ws-blog-eyebrow,
.ws-section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ws-blog-eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.ws-blog-hero h1 {
  max-width: 680px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.ws-blog-hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.75;
}

.ws-blog-hero__visual {
  position: relative;
  min-height: 290px;
}

.ws-blog-hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 330px);
  min-height: 210px;
  padding: 34px;
  color: var(--ws-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(10, 65, 88, 0.24);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%) rotate(3deg);
}

.ws-blog-hero-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--ws-primary);
  font-size: 25px;
  background: var(--ws-primary-soft);
  border-radius: 17px;
}

.ws-blog-hero-card span {
  max-width: 220px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.ws-blog-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.ws-blog-orb--one {
  top: 4px;
  right: 20px;
  width: 82px;
  height: 82px;
}

.ws-blog-orb--two {
  left: 5px;
  bottom: 10px;
  width: 46px;
  height: 46px;
}

.ws-blog-section {
  padding: 96px 0 110px;
  background: var(--ws-bg);
}

.ws-blog-section__header {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.ws-section-label {
  color: var(--ws-primary);
}

.ws-blog-section__header h2 {
  margin: 0;
  color: var(--ws-dark);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.ws-blog-section__header p {
  margin: 0;
  color: var(--ws-text);
  font-size: 17px;
  line-height: 1.75;
}

.ws-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.ws-blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--ws-surface);
  border: 1px solid var(--ws-border);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(29, 76, 101, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ws-blog-card:hover {
  border-color: rgba(29, 146, 189, 0.45);
  box-shadow: 0 24px 55px rgba(29, 76, 101, 0.14);
  transform: translateY(-7px);
}

.ws-blog-card__image-link {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
  background: #e8f3f8;
}

.ws-blog-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ws-blog-card:hover .ws-blog-card__image {
  transform: scale(1.04);
}

.ws-blog-card__category {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  color: var(--ws-primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.ws-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 26px;
}

.ws-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 16px;
  color: #78909f;
  font-size: 13px;
}

.ws-blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ws-blog-card__title {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.ws-blog-card__title a {
  color: var(--ws-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ws-blog-card__title a:hover {
  color: var(--ws-primary);
}

.ws-blog-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 24px;
  color: var(--ws-text);
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ws-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #edf3f6;
}

.ws-blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ws-primary-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ws-blog-card__read-more i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.ws-blog-card__read-more:hover i {
  transform: translateX(4px);
}

.ws-blog-card__like {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: #708796;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.ws-blog-card__like:hover {
  color: #d85267;
  background: #fff2f4;
}

@media (max-width: 991px) {
  .ws-blog-hero {
    padding-top: 125px;
  }

  .ws-blog-hero__inner,
  .ws-blog-section__header {
    grid-template-columns: 1fr;
  }

  .ws-blog-hero__visual {
    display: none;
  }
}

@media (max-width: 767px) {
  .ws-blog-hero {
    padding: 112px 0 64px;
  }

  .ws-blog-hero h1 {
    font-size: 42px;
  }

  .ws-blog-hero p {
    font-size: 17px;
  }

  .ws-blog-section {
    padding: 70px 0 80px;
  }

  .ws-blog-grid {
    grid-template-columns: 1fr;
  }

  .ws-blog-card__body {
    padding: 24px;
  }
}
