html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  --modern-bg-start: #fff7d1;
  --modern-bg-mid: #f3e8ff;
  --modern-bg-end: #dff5ee;
  --modern-surface: rgba(255, 255, 255, 0.97);
  --modern-surface-strong: #ffffff;
  --modern-border: #ffd4e7;
  --modern-shadow: 0 10px 0 rgba(214, 187, 255, 0.34);
  --modern-shadow-soft: 0 18px 42px rgba(61, 36, 78, 0.09);
  --modern-text: #121212;
  --modern-muted: #5f5f5f;
  --modern-radius: 26px;
  --header-gap: 16px;
  --brand-width: 272px;
}

body.edito-t.agency-la,
body.edito-t {
  margin: 0;
  color: var(--modern-text);
  background: linear-gradient(135deg, var(--modern-bg-start) 0%, var(--modern-bg-mid) 52%, var(--modern-bg-end) 100%);
  background-attachment: fixed;
  font-family: "Open Sans", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.row,
.clearfix,
.columns {
  width: 100%;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.title-bar,
.title-bar-title {
  display: none !important;
}

#main-header.agency-header {
  min-height: 141px;
  margin: 0;
  padding: 0;
}

.agency-header-brand,
.agency-header-menu {
  position: fixed;
  top: 12px;
}

.agency-header-brand {
  z-index: 72;
  left: 50%;
  width: var(--brand-width);
  margin-left: calc(var(--brand-width) / -2);
  padding: 12px 8px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.agency-header-logo-link {
  display: inline-flex;
  align-items: center;
}

.agency-header-logo-link img.logo-grey {
  width: 100%;
  max-width: 220px;
  height: auto;
  max-height: 58px;
}

.agency-header-social {
  position: fixed;
  top: 30px;
  right: 22px;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 85;
}

.agency-header-social li {
  width: 42px;
  height: 42px;
  border: 2px solid var(--modern-border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 6px 0 rgba(214, 187, 255, 0.34);
}

.agency-header-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.agency-header-social li svg {
  width: 19px;
  height: 19px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.agency-header-menu {
  z-index: 60;
  left: 50%;
  right: auto;
  top: 92px;
  width: 98%;
  min-height: 82px;
  padding: 18px 24px 16px;
  border: 2px solid var(--modern-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--modern-shadow), var(--modern-shadow-soft);
  transform: translateX(-50%);
}

.agency-header-nav {
  display: block !important;
  background: transparent;
}

.agency-header-nav .menu {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 0.6rem;
  align-items: stretch;
}

.agency-header-nav .menu > li {
  width: auto;
  flex: none;
}

.agency-header-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 0.72rem 0.75rem 0.84rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--modern-text);
  box-shadow: 0 6px 0 rgba(214, 187, 255, 0.3);
  font-size: 0.92rem;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.agency-header-nav .menu > li > a:hover,
.agency-header-nav .menu > li > a:focus {
  transform: translateY(-2px);
  border-color: var(--modern-border);
  box-shadow: 0 10px 0 rgba(214, 187, 255, 0.38);
}

#void {
  height: 0;
}

#content.agency-directory,
#content.talent-page.talent-1 {
  width: min(1480px, calc(100% - 28px));
  margin: 0 auto 80px;
}

.feature-section,
.directory-section {
  width: 100%;
}

.directory-title {
  margin: 0 0 1.2rem;
  padding: 0 6px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.directory-subtitle {
  margin: 1rem 0 0.85rem;
  padding: 0 6px;
  color: var(--modern-text);
  font-size: 1rem;
  font-weight: 500;
}

.agency-news-page {
  margin-top: 0;
}

.agency-news-page .news-section {
  width: 100%;
}

.agency-news-page .directory-title {
  margin-bottom: 1.35rem;
}

.agency-news-page .news-feed {
  display: grid;
  gap: 1.8rem;
  width: 100%;
}

.agency-news-page .news-entry {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.agency-news-page .news-detail-box {
  border: 2px solid var(--modern-border);
  border-radius: var(--modern-radius);
  background: var(--modern-surface-strong);
  box-shadow: var(--modern-shadow), var(--modern-shadow-soft);
  padding: 1.25rem 1.35rem;
}

.agency-news-page .news-detail-column + .news-detail-column {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid #f1ddf0;
}

.agency-news-page .news-detail-label {
  margin: 0 0 0.45rem;
  color: #7e5f72;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agency-news-page .news-detail-content {
  color: var(--modern-text);
  font-size: 0.96rem;
  line-height: 1.65;
}

.agency-news-page .news-detail-content a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #ffb0d7;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.agency-news-page .news-detail-column:first-child .news-detail-content {
  font-size: 20px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.agency-news-page .news-detail-column:first-child .news-detail-content,
.agency-news-page .news-detail-column:first-child .news-detail-content a {
  color: transparent;
  background: linear-gradient(135deg, #ffb45f 0%, #ffb9d7 55%, #d9b9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-decoration: none;
}

.agency-news-page .news-detail-column:first-child .news-detail-content a {
  display: block;
  margin: 0 0 0.14rem;
}

.agency-news-page .news-detail-column:first-child .news-detail-content a:hover {
  filter: brightness(0.92);
}

.agency-news-page .news-detail-column:first-child .news-detail-content br {
  display: none;
}

.agency-news-page .news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.agency-news-page .news-gallery-item.gallery-item {
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 2px solid var(--modern-border);
  border-radius: 22px;
  background: var(--modern-surface-strong);
  box-shadow: 0 8px 0 rgba(214, 187, 255, 0.24), 0 16px 30px rgba(61, 36, 78, 0.08);
}

.agency-news-page .news-gallery-item a {
  display: block;
}

.agency-news-page .news-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center;
}

.model-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

.contact-grid {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  gap: 0.46rem !important;
}

.feature-grid > .container-talent-top-element,
.contact-grid > .container-talent-list-element {
  width: 100% !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.board-2 .container-talent-top-element,
.board-2 .container-talent-list-element {
  overflow: hidden;
  border: 2px solid var(--modern-border);
  background: var(--modern-surface);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.board-2 .container-talent-top-element {
  border-radius: var(--modern-radius);
  box-shadow: var(--modern-shadow), var(--modern-shadow-soft);
}

.board-2 .container-talent-list-element {
  border-radius: 18px;
  box-shadow: 0 8px 0 rgba(214, 187, 255, 0.24), 0 14px 26px rgba(61, 36, 78, 0.07);
}

.board-2 .container-talent-top-element:hover,
.board-2 .container-talent-list-element:hover {
  transform: translateY(-4px);
  border-color: #ffc7e2;
}

.board-2 .container-talent-top-element > a {
  display: block;
}

.board-2 .container-talent-top-element img,
.board-2 .container-talent-list-element img {
  display: none;
}

.board-2 .container-talent-top-element .content-img-talent-list,
.board-2 .container-talent-list-element .content-img-talent-list {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.board-2 .container-talent-top-element .content-img-talent-list {
  aspect-ratio: 0.8;
  border-radius: 22px 22px 0 0;
}

.board-2 .container-talent-list-element .content-img-talent-list {
  aspect-ratio: 0.76;
  border-radius: 16px 16px 0 0;
}

.board-2 .container-talent-top-element p.text-center,
.board-2 .container-talent-list-element p.text-center {
  margin: 0;
  text-align: center;
  color: var(--modern-text);
}

.board-2 .container-talent-top-element p.text-center {
  padding: 0.95rem 0.82rem 1.08rem;
  font-size: 0.98rem;
  line-height: 1.34;
  font-weight: 700;
}

.board-2 .container-talent-list-element p.text-center {
  padding: 0.42rem 0.22rem 0.56rem;
  font-size: 0.62rem;
  line-height: 1.18;
  font-weight: 600;
}

.talent-page.talent-1 .talent-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: flex-start;
}

.talent-page.talent-1 .gallery-item {
  overflow: hidden;
  width: auto !important;
  margin-bottom: 0 !important;
  padding: 0;
  border: 2px solid var(--modern-border);
  border-radius: var(--modern-radius);
  background: var(--modern-surface-strong);
  box-shadow: var(--modern-shadow), var(--modern-shadow-soft);
}

.talent-page.talent-1 .gallery-item.talent-specs.desktop {
  grid-column: 1 / span 2;
  grid-row: 1;
  width: auto !important;
  position: static;
  padding: 1.25rem 1.35rem;
}

.talent-page.talent-1 .gallery-item.talent-specs.mobile {
  display: none;
}

.talent-page.talent-1 .gallery-item.talent-specs.desktop table,
.talent-page.talent-1 .gallery-item.talent-specs.desktop tbody,
.talent-page.talent-1 .gallery-item.talent-specs.desktop tr,
.talent-page.talent-1 .gallery-item.talent-specs.desktop td {
  display: block;
  width: 100%;
}

.talent-page.talent-1 .gallery-item.talent-specs.desktop td {
  padding: 0.2rem 0;
  border: 0;
  font-size: 1rem;
  line-height: 1.55;
  vertical-align: top;
}

.talent-page.talent-1 .gallery-item.talent-specs.desktop td + td {
  margin-top: 0.8rem;
  padding-top: 0.9rem;
  border-top: 1px solid #f1ddf0;
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: break-word;
}

.talent-page.talent-1 .gallery-item.talent-specs.desktop td + td p {
  font-size: 0.875rem !important;
  line-height: 1.55 !important;
}

.talent-page.talent-1 .gallery-item.talent-specs.desktop td + td h5,
.talent-page.talent-1 .gallery-item.talent-specs.mobile h5 {
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.talent-page.talent-1 .gallery-item.the-first-one {
  grid-column: 3 / span 3;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  align-self: start;
  overflow: hidden;
}

.talent-page.talent-1 .gallery-item.the-first-one > a,
.talent-page.talent-1 .gallery-item .zoomed-image {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.talent-page.talent-1 .gallery-item.the-first-one > a {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.talent-page.talent-1 .gallery-item.the-first-one .zoomed-image {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

.talent-page.talent-1 .gallery-item .zoomed-image {
  object-fit: cover;
  object-position: top center;
}

.talent-page.talent-1 .gallery-item:not(.talent-specs):not(.the-first-one) {
  grid-column: span 1;
  min-width: 0;
  min-height: 170px;
}

.talent-page.talent-1 .gallery-item:not(.talent-specs):not(.the-first-one) .zoomed-image {
  aspect-ratio: 0.8;
  object-fit: cover;
  object-position: top center;
}

.talent-page.talent-1 .talent-name {
  margin: 0 0 0.45rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #febb64 0%, #f5b3a4 45%, #e8c9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.talent-page.talent-1 .talent-lb,
.agency-news-page .talent-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(28, 18, 43, 0.58);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}

.talent-page.talent-1 .talent-lb.active,
.agency-news-page .talent-lb.active {
  display: block;
}

.talent-page.talent-1 .talent-lb .close,
.agency-news-page .talent-lb .close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
}

.talent-page.talent-1 .talent-lb .close a,
.agency-news-page .talent-lb .close a {
  display: block;
  width: 26px;
  height: 26px;
  background: url("../image/asset/close-zoom.svg") no-repeat center/contain;
}

.talent-page.talent-1 .talent-lb .talent-pic-zoom,
.agency-news-page .talent-lb .talent-pic-zoom {
  display: none;
  width: min(1120px, calc(100vw - 48px));
  min-height: min(84vh, 760px);
  margin: 0 auto;
  padding: 26px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 28px 80px rgba(24, 16, 42, 0.22);
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 1rem;
}

.talent-page.talent-1 .talent-lb .talent-pic-zoom.active,
.agency-news-page .talent-lb .talent-pic-zoom.active {
  display: grid;
}

.talent-page.talent-1 .talent-lb .talent-pic-zoom > div:nth-child(2),
.agency-news-page .talent-lb .talent-pic-zoom > div:nth-child(2) {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.talent-page.talent-1 .talent-lb .talent-pic-zoom img,
.agency-news-page .talent-lb .talent-pic-zoom img {
  max-width: 100%;
  max-height: min(76vh, 680px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}

.talent-page.talent-1 .talent-lb .talent-lb-prev,
.talent-page.talent-1 .talent-lb .talent-lb-next,
.agency-news-page .talent-lb .talent-lb-prev,
.agency-news-page .talent-lb .talent-lb-next {
  flex: 0 0 auto;
  font-size: 0;
  line-height: 1;
}

.talent-page.talent-1 .talent-lb .talent-lb-prev a,
.talent-page.talent-1 .talent-lb .talent-lb-next a,
.agency-news-page .talent-lb .talent-lb-prev a,
.agency-news-page .talent-lb .talent-lb-next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--modern-border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 0 rgba(214, 187, 255, 0.28);
  color: #111111;
  font-size: 2rem;
}

#main-footer {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

#main-footer ul {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

#main-footer li {
  font-size: 0.92rem;
}

.gototop {
  display: block;
  width: 46px;
  margin: 1rem auto 0;
}

@media (max-width: 1350px) {
  .agency-news-page .news-entry {
    grid-template-columns: 1fr;
  }

  .agency-news-page .news-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  :root {
    --brand-width: 248px;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .contact-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .talent-page.talent-1 .talent-gallery {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .talent-page.talent-1 .gallery-item.the-first-one {
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 1200px) {
  .agency-header-nav .menu {
    gap: 0.5rem;
  }

  .agency-header-nav .menu > li > a {
    min-height: 54px;
    padding: 0.68rem 0.55rem 0.78rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 767px) {
  body.edito-t.agency-la {
    padding-top: 84px;
  }

  #main-header.agency-header {
    min-height: 0;
    width: calc(100% - 14px);
    margin: 10px auto 0;
    padding: 10px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .agency-header-brand {
    position: fixed;
    top: 12px;
    left: 50%;
    width: var(--brand-width);
    margin-left: calc(var(--brand-width) / -2);
    padding: 12px 8px 0;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    z-index: 72;
  }

  .agency-header-social {
    top: 30px;
    right: 14px;
  }

  .agency-header-menu {
    position: static;
    width: auto;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.35rem 0 0;
    border-top: 0;
  }

  #content.agency-directory,
  #content.talent-page.talent-1,
  #content.agency-news-page {
    width: calc(100% - 14px);
    margin-top: 0;
  }

  .agency-news-page .news-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .agency-news-page .news-detail-box {
    padding: 1rem 1rem 1.05rem;
  }

  .agency-news-page .news-detail-content {
    font-size: 0.92rem;
  }

  .talent-page.talent-1 .talent-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.desktop {
    grid-column: 1 / span 2;
    width: 100% !important;
  }

  .talent-page.talent-1 .gallery-item.the-first-one {
    grid-column: 3 / span 2;
    min-width: 0;
    min-height: 0;
    aspect-ratio: auto;
    align-self: start;
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
  }

  .contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0.52rem !important;
  }
}

@media (max-width: 767px) {
  .title-bar {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    margin: 0;
  }

  .title-bar-title {
    display: none !important;
  }

  .title-bar .menu-icon {
    position: relative;
    width: 42px;
    height: 42px;
    border: 2px solid var(--modern-border);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 6px 0 rgba(214, 187, 255, 0.34);
  }

  .title-bar .menu-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #121212;
    transform: translate(-50%, -50%);
    box-shadow: 0 -6px 0 #121212, 0 6px 0 #121212;
  }

  .agency-header-menu {
    position: fixed;
    top: 30px;
    left: 14px;
    width: auto;
    padding: 0;
    z-index: 85;
  }

  .agency-header-nav {
    display: none !important;
    position: absolute;
    left: 0;
    right: auto;
    top: 52px;
    width: min(320px, calc(100vw - 28px));
    border: 2px solid var(--modern-border);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(53, 32, 70, 0.18);
    z-index: 20;
  }

  .agency-header-nav.is-active,
  .agency-header-nav.is-open,
  .agency-header-nav[style*="display: block"],
  .agency-header-nav[style*="display:block"] {
    display: block !important;
  }

  .agency-header-nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .agency-header-nav .menu > li {
    width: 100%;
    flex: 0 0 100%;
  }

  .agency-header-nav .menu > li > a {
    border: 0;
    border-bottom: 1px solid #f3e7f0;
    border-radius: 0;
    box-shadow: none;
    justify-content: flex-start;
    padding: 0.95rem 1rem;
  }

  .agency-header-nav .menu > li:last-child > a {
    border-bottom: 0;
  }

  .directory-title {
    font-size: 1.6rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.72rem !important;
  }

  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.desktop {
    display: none;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile {
    display: block;
    grid-column: 1 / -1;
    width: 100% !important;
    padding: 1.1rem;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile .spacing-up {
    width: auto !important;
    position: static !important;
    padding-top: 0 !important;
    margin: 0 0 0.6rem;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile .spacing-up a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile .minicons {
    width: 14px !important;
    min-width: 14px;
    top: 0 !important;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile .info-talent {
    width: auto !important;
    padding-top: 0 !important;
    margin-bottom: 0;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile .info-talent .talent-name {
    margin: 0.2rem 0 0.45rem;
    font-size: 1.4rem;
    line-height: 1.05;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile table,
  .talent-page.talent-1 .gallery-item.talent-specs.mobile tbody,
  .talent-page.talent-1 .gallery-item.talent-specs.mobile tr,
  .talent-page.talent-1 .gallery-item.talent-specs.mobile td {
    display: block;
    width: 100%;
    border: 0;
    padding: 0.15rem 0;
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .talent-page.talent-1 .gallery-item.talent-specs.mobile td[colspan] {
    font-size: 0.875rem !important;
    line-height: 1.55 !important;
  }

  .talent-page.talent-1 .talent-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .talent-page.talent-1 .gallery-item.the-first-one {
    grid-column: 1 / -1;
    min-height: 0;
    aspect-ratio: auto;
    align-self: start;
    overflow: hidden;
  }

  .talent-page.talent-1 .gallery-item:not(.talent-specs):not(.the-first-one) {
    grid-column: span 1;
    min-width: 0;
    min-height: 150px;
  }

  .talent-page.talent-1 .talent-lb,
  .agency-news-page .talent-lb {
    padding-top: 3.5rem;
  }

  .talent-page.talent-1 .talent-lb .talent-pic-zoom,
  .agency-news-page .talent-lb .talent-pic-zoom {
    height: calc(100vh - 4.5rem);
  }

  .talent-page.talent-1 .talent-lb .talent-lb-prev,
  .talent-page.talent-1 .talent-lb .talent-lb-next,
  .agency-news-page .talent-lb .talent-lb-prev,
  .agency-news-page .talent-lb .talent-lb-next {
    font-size: 2.2rem;
  }
}

@media (max-width: 420px) {
  .agency-news-page .news-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .board-2 .container-talent-top-element p.text-center {
    padding: 0.76rem 0.58rem 0.96rem;
    font-size: 0.92rem;
  }

  .board-2 .container-talent-list-element p.text-center {
    font-size: 0.68rem;
  }
}
