.hero_social_column {
  position: absolute;
  top: 25%;
  right: 48px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 20;
}

.hero_social_btn {
  width: 32px;
  height: 32px;
  display: block;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  transition: transform 125ms ease-in-out, background-image 125ms ease-in-out;
}

.hero_social_btn[data_icon="email"] {
  background-image: url("../assets/icons/email_blue.svg");
}

.hero_social_btn[data_icon="git"] {
  background-image: url("../assets/icons/git_blue.svg");
}

.hero_social_btn[data_icon="linkedin"] {
  background-image: url("../assets/icons/linkedin_blue.svg");
}

.hero_social_btn:hover {
  transform: scale(1.08);
}

.hero_social_btn[data_icon="email"]:hover {
  background-image: url("../assets/icons/email_blue_hover.svg");
}

.hero_social_btn[data_icon="git"]:hover {
  background-image: url("../assets/icons/git_blue_hover.svg");
}

.hero_social_btn[data_icon="linkedin"]:hover {
  background-image: url("../assets/icons/linkedin_blue_hover.svg");
}

@media (min-width: 1800px) {
  .hero_social_column {
    top: 40%;
  }
}


@media (max-width: 1200px) {
  .hero_social_column {
    right: 24px;
  }
}

@media (max-width: 960px) {
  .hero_social_column {
    display: none;
  }
}

.btn_standard:hover {
  background: var(--primary);
  color: var(--bg_and_main);
  box-shadow: 0 0 18px hsla(202, 51%, 60%, 0.25);
}

.nav_brand .brand_role.color_dark {
  color: #272f35 !important;
}

.hero_logo_block .brand_role.color_lightblue,
.hero_logo_mobile .brand_role.color_lightblue {
  color: #89BCD9 !important;
}

.section_cta_row {
  display: flex;
}

.skills_mobile_cta {
  display: none;
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 1600px) {
  .hero_layout {
    grid-template-columns: 720px 1fr 56px;
    gap: 72px;
  }

  .hero_content_col {
    max-width: 720px;
    justify-self: center;
  }
}

@media (max-width: 1200px) {
  .hero_layout {
    grid-template-columns: minmax(280px, 560px) minmax(280px, 1fr) 48px;
    gap: 24px;
  }

  .hero_image_shape {
    width: clamp(360px, 36vw, 560px);
    height: clamp(420px, 44vw, 620px);
  }

  .hero_title {
    font-size: clamp(52px, 4.4vw, 74px);
  }

  .hero_subtitle {
    font-size: clamp(22px, 1.8vw, 30px);
  }
}

@media (max-width: 960px) {
  .hero_section,
  .hero_height {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .hero_mobile_top {
    display: flex;
  }

  .desktop_only {
    display: none !important;
  }

  .desktop_hero_image {
    display: none !important;
  }

  .hero_layout {
    min-height: auto;
    height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 0;
  }

  .hero_media_col {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    justify-content: center;
    align-items: center;
  }

  .hero_image_shape {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 0;
  }

  .mobile_hero_stage {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }

  .flip_card {
    display: block;
  }

  .mobile_hero_text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .why_me_section .section_cta_row {
    display: none;
  }

  .skills_mobile_cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 20px;
  }

  .skills_mobile_cta .btn_standard {
    width: 170px;
    height: 54px;
    border: none;
    border-radius: 999px;
    background: var(--primary);
    color: var(--bg_and_main);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 0 18px hsla(202, 51%, 60%, 0.25);
  }

  .skills_mobile_cta .btn_standard:hover {
    background: var(--primary);
    color: var(--bg_and_main);
    transform: none;
    box-shadow: 0 0 18px hsla(202, 51%, 60%, 0.25);
  }
}

@media (max-width: 700px) {
  .hero_mobile_top {
    min-height: 88px;
  }

  .flip_card {
    width: min(90vw, 320px);
  }

  .mobile_hero_visual {
    width: min(78vw, 290px);
  }

  .mobile_link_section a {
    font-size: 1.25rem;
  }

  .mobile_hero_title {
    font-size: 3rem;
  }

  .mobile_hero_subtitle {
    font-size: 1.2rem;
  }

  .hero_scroll_icon {
    width: 32px;
    height: auto;
  }
}

.hero_layout {
  position: relative;
}