.events {
    display: flex;
    flex-wrap: wrap;
    gap: 57px;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}

.events__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.events__col h3 {
  font-family: "Geologica-Regular";
  font-size: 24px;
  line-height: 28px;
  color: var(--text);
}

.events__col--webinars {
    flex: 0 0 100%;
    max-width: 636px;
}

.events__col--articles {
    flex: 0 0 100%;
    gap: 29px;
    max-width: 378px;
}

.webinar-card {
  position: relative;
  min-height: 322px;
  border-radius: 17px;
  overflow: hidden;
  background: var(--white);
  text-decoration: none;
  display: flex;
}

.webinar-card__image {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
}
.webinar-card-main__image.resp-img{
  position: relative;
  max-width: 238px;
  width: 90%;
}
.webinar-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 322px;
  padding: 22px 21px;
  color: #070e5f;
  flex: 1;
}
.webinar-card__img {
    flex: 1;
}
.webinar-card-pic{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.webinar-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.webinar-card__tag {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 27px;
    padding: 3px 12px;
    border: 0.3px solid #070e5f;
    border-radius: 16px;
    font-size: 13px;
    opacity: 0.55;
    color: #070E5F;
}

.webinar-card__title {
  font-family: "Geologica-thin";
  font-weight: 100;
  font-size: 23px;
  line-height: 1.2;
  max-width: 314px;
  margin-bottom: auto;
}

.webinar-card__footer {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.webinar-card__date {
  font-family: "Geologica-thin";
  font-weight: 100;
  font-size: 23px;
}

.webinar-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 3px 16px;
    background: #070e5f;
    border-radius: 16px;
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    max-width: 136px;
    width: 100%;
}

.link-muted {
    font-size: 18px;
    line-height: 26px;
    color: var(--blue);
    opacity: 0.7;
    display: inline-block;
    width: fit-content;
}

.link-muted:hover {
    text-decoration: none;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 378px;
}

.articles-list a {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-dark);
}

.articles-list a:hover {
    text-decoration: none;
}

.articles-list hr {
  border: none;
  border-top: 1px solid rgba(4, 11, 50, 0.15);
  width: 100%;
}

.cert-card-btn-mob,.webinar-card-img {
    display: none;
}
@media (max-width: 480px) {
    .webinar-card {
    flex-wrap: wrap;
}
.webinar-card__content,.webinar-card__img {
    flex: 0 0 100%;
}
.webinar-card__content{
  min-height: auto;
    gap: 20px;
}
.webinar-card-pic {
    padding: 21px;
}
.webinar-card-main__image.resp-img {
    max-width: 100%;
    width: 100%;
}
}