/* Plus+Golf responsive redesign layer.
   This file intentionally overrides the legacy inline-heavy templates without
   changing routes, SQL, or module contracts. */

:root {
  --pg-primary: #111111;
  --pg-primary-dark: #111111;
  --pg-primary-soft: rgba(17, 17, 17, 0.1);
  --pg-ink: #17211b;
  --pg-muted: #6a746e;
  --pg-line: #dfe7e2;
  --pg-surface: #ffffff;
  --pg-surface-soft: #f5f8f6;
  --pg-warning: #f59f00;
  --pg-success: #111111;
  --pg-radius: 8px;
  --pg-shadow: 0 14px 38px rgba(18, 35, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pg-site-shell {
  min-height: 100vh;
  color: var(--pg-ink);
  background-color: #edf2ef;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body.pg-site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(237,242,239,0.96) 42%, #edf2ef);
  pointer-events: none;
}

.pg-hcp-shell {
  width: min(100% - 28px, 1180px);
  margin: 34px auto 34px;
}

.pg-hcp-hero,
.pg-hcp-search-card,
.pg-hcp-results,
.pg-hcp-player-card,
.pg-hcp-converter,
.pg-hcp-revision {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
  box-shadow: 0 18px 50px rgba(18, 35, 27, 0.08);
}

.pg-hcp-hero {
  margin-bottom: 14px;
  padding: 26px;
  color: var(--pg-ink);
  background: linear-gradient(135deg, #fff, var(--pg-surface-soft));
}

.pg-hcp-hero-compact {
  padding: 20px 24px;
}

.pg-hcp-hero p,
.pg-hcp-kicker,
.pg-hcp-section-head p,
.pg-hcp-results-head p {
  margin: 0 0 4px;
  color: var(--pg-primary);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-hcp-hero p {
  color: var(--pg-primary);
}

.pg-hcp-hero h1,
.pg-hcp-player-main h1,
.pg-hcp-section-head h2,
.pg-hcp-results-head h2 {
  margin: 0;
  font-family: "Cuprum", "Roboto", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.pg-hcp-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.pg-hcp-search-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 46px);
}

.pg-hcp-search-card::before,
.pg-hcp-player-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(125deg, var(--pg-primary-soft), transparent 46%);
  pointer-events: none;
}

.pg-hcp-powered {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.pg-hcp-powered img {
  width: 128px;
}

.pg-hcp-search-card label {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: var(--pg-ink);
  font-family: "Cuprum", "Roboto", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.pg-hcp-search-card p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 10px 0 22px;
  color: var(--pg-muted);
  font-size: 1rem;
}

.pg-hcp-search-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
}

.pg-hcp-search-row input,
.pg-hcp-converter-toolbar input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #fff;
  color: var(--pg-ink);
  font-size: 1rem;
  font-weight: 800;
  outline: none;
}

.pg-hcp-search-row input {
  padding: 0 16px;
}

.pg-hcp-converter-toolbar input {
  padding: 0 14px;
}

.pg-hcp-search-row input:focus,
.pg-hcp-converter-toolbar input:focus {
  border-color: var(--pg-primary);
  box-shadow: 0 0 0 4px var(--pg-primary-soft);
}

.pg-hcp-search-row .btn,
.pg-hcp-results-head a,
.pg-hcp-empty a {
  min-height: 52px;
  border: 0;
  border-radius: var(--pg-radius);
  background: var(--pg-primary);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
}

.pg-hcp-search-row .btn {
  padding: 0 28px;
}

.pg-hcp-results {
  padding: clamp(16px, 3vw, 28px);
}

.pg-hcp-results-head,
.pg-hcp-section-head,
.pg-hcp-converter-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pg-hcp-results-head {
  margin-bottom: 16px;
}

.pg-hcp-results-head a,
.pg-hcp-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
}

.pg-hcp-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.pg-hcp-result-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "name hcp"
    "club hcp"
    "meta hcp";
  gap: 2px 14px;
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--pg-line);
  border-left: 5px solid var(--pg-primary);
  border-radius: var(--pg-radius);
  background: linear-gradient(135deg, #fff, var(--pg-surface-soft));
  color: var(--pg-ink) !important;
  text-decoration: none;
}

.pg-hcp-result-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(18, 35, 27, 0.1);
}

.pg-hcp-result-name {
  grid-area: name;
  font-weight: 950;
  line-height: 1.1;
}

.pg-hcp-result-club,
.pg-hcp-result-meta {
  color: var(--pg-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.pg-hcp-result-club {
  grid-area: club;
}

.pg-hcp-result-meta {
  grid-area: meta;
}

.pg-hcp-result-card > strong {
  grid-area: hcp;
  align-self: center;
  min-width: 64px;
  padding: 10px 12px;
  border-radius: var(--pg-radius);
  background: var(--pg-primary);
  color: #fff;
  font-size: 1.45rem;
  text-align: center;
}

.pg-hcp-player-card {
  position: relative;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) minmax(220px, auto);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 22px;
}

.pg-hcp-player-card > * {
  position: relative;
  z-index: 1;
}

.pg-hcp-player-card .pg-hcp-powered {
  position: relative;
  top: auto;
  right: auto;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-content: flex-end;
  margin: 0 0 8px;
}

.pg-hcp-player-card .pg-hcp-powered img {
  width: 106px;
}

.pg-hcp-player-photo {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.pg-hcp-player-main {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.pg-hcp-player-photo img {
  width: 126px;
  height: 126px;
  border: 5px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(18, 35, 27, 0.16);
}

.pg-hcp-player-main h1 {
  max-width: 760px;
  color: var(--pg-ink);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 0.96;
}

.pg-hcp-player-main p:not(.pg-hcp-kicker) {
  margin: 8px 0 0;
  color: var(--pg-muted);
  font-size: 1.04rem;
  font-weight: 900;
}

.pg-hcp-player-metrics {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 8px;
  margin-top: 0;
}

.pg-hcp-player-metrics div,
.pg-hcp-revision-stat {
  display: grid;
  place-items: center;
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: rgba(255,255,255,0.82);
}

.pg-hcp-player-metrics span,
.pg-hcp-revision-stat span {
  color: var(--pg-muted);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-hcp-player-metrics strong,
.pg-hcp-revision-stat strong {
  color: var(--pg-ink);
  font-size: 1.7rem;
  font-weight: 950;
  line-height: 1;
}

.pg-hcp-converter,
.pg-hcp-revision {
  margin-top: 14px;
  padding: clamp(16px, 3vw, 24px);
}

.pg-hcp-section-head {
  align-items: flex-end;
  margin-bottom: 14px;
}

.pg-hcp-revision-head {
  align-items: center;
  --pg-revision-align: clamp(16px, 1.5vw, 24px);
}

.pg-hcp-revision-head > div {
  min-width: 0;
}

.pg-hcp-section-head.pg-hcp-revision-head p {
  margin: 0;
  color: var(--pg-ink);
  font-family: "Cuprum", "Roboto", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.pg-hcp-section-head.pg-hcp-revision-head h2 {
  margin: 8px 0 0;
  padding-left: var(--pg-revision-align);
  color: var(--pg-muted);
  font-size: clamp(0.85rem, 1.5vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-hcp-revision-logo {
  flex: 0 0 auto;
  width: 138px;
  max-width: 28%;
  height: auto;
}

.pg-hcp-section-head h2 {
  color: var(--pg-ink);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.pg-hcp-section-head span,
.pg-hcp-converter-toolbar span {
  color: var(--pg-muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.pg-hcp-converter-toolbar {
  margin-bottom: 14px;
}

.pg-hcp-converter-toolbar input {
  max-width: 440px;
}

.pg-hcp-converter-toolbar label {
  color: var(--pg-muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-hcp-converter-toolbar select {
  min-height: 52px;
  min-width: min(100%, 280px);
  padding: 0 42px 0 14px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #fff;
  color: var(--pg-ink);
  font-size: 1rem;
  font-weight: 900;
  outline: none;
}

.pg-hcp-converter-toolbar select:focus {
  border-color: var(--pg-primary);
  box-shadow: 0 0 0 4px var(--pg-primary-soft);
}

.pg-hcp-converter-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
}

.pg-hcp-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 10px;
}

.pg-hcp-course-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 10px;
  padding: 15px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #fff;
}

.pg-hcp-course-card h3 {
  margin: 0;
  color: var(--pg-ink);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.12;
}

.pg-hcp-course-card p {
  margin: 4px 0 0;
  color: var(--pg-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.pg-hcp-course-card > strong {
  align-self: start;
  padding: 10px;
  border-radius: var(--pg-radius);
  background: var(--pg-primary);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.pg-hcp-course-card dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 4px 0 0;
}

.pg-hcp-course-card dl div {
  padding: 8px;
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
  text-align: center;
}

.pg-hcp-course-card dt {
  color: var(--pg-muted);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pg-hcp-course-card dd {
  margin: 0;
  color: var(--pg-ink);
  font-size: 1rem;
  font-weight: 950;
}

.pg-hcp-revision-list {
  display: grid;
  gap: 8px;
  padding-left: clamp(16px, 1.5vw, 24px);
}

.pg-hcp-revision-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px 112px;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--pg-line);
  border-left: 5px solid var(--pg-primary);
  border-radius: var(--pg-radius);
  background: #fff;
  color: var(--pg-ink) !important;
  text-decoration: none;
}

.pg-hcp-revision-row:hover {
  background: var(--pg-surface-soft);
}

.pg-hcp-revision-main {
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
  padding: 4px 6px;
}

.pg-hcp-revision-main span {
  color: var(--pg-primary);
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
}

.pg-hcp-revision-main strong {
  overflow: hidden;
  color: var(--pg-ink);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
}

.pg-hcp-revision-main small {
  color: var(--pg-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.pg-hcp-empty {
  margin-top: 14px;
  padding: 22px;
  border: 1px dashed var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
  color: var(--pg-muted);
  font-weight: 900;
  text-align: center;
}

.pg-hcp-card-title {
  margin-bottom: 10px;
  padding: 18px 20px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: linear-gradient(135deg, #fff, var(--pg-surface-soft));
}

.pg-hcp-card-title p {
  margin: 0 0 3px;
  color: var(--pg-primary);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-hcp-card-title h1 {
  margin: 0;
  color: var(--pg-ink);
  font-family: "Cuprum", "Roboto", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
}

.pg-hcp-card-wrap {
  overflow: hidden;
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(18, 35, 27, 0.08);
}

.pg-hcp-card-shell table {
  max-width: 100%;
}

.pg-hcp-card-shell > .pg-hcp-card-wrap > table {
  width: 100% !important;
  margin-top: 0 !important;
}

.pg-hcp-card-shell .profilehcp {
  width: min(100%, 118px) !important;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}

.pg-hcp-card-shell .profilehcp img {
  aspect-ratio: 1;
  border: 4px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(18, 35, 27, 0.14);
}

.pg-hcp-card-shell h2 {
  color: var(--pg-ink) !important;
  font-family: "Cuprum", "Roboto", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem) !important;
  line-height: 1 !important;
}

.pg-hcp-card-shell #AutoNumber2 {
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #fff;
}

.pg-hcp-card-shell #AutoNumber2 td {
  min-width: 34px;
  padding: 7px 5px !important;
  border-color: #e3ebe6 !important;
  color: var(--pg-ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 850;
}

.pg-hcp-card-back-wrap {
  margin: 0 !important;
  padding: 0 !important;
}

.pg-hcp-card-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px 0 10px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: linear-gradient(135deg, #fff, var(--pg-surface-soft));
  color: var(--pg-ink) !important;
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none !important;
}

.pg-hcp-card-back span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pg-primary);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.pg-hcp-card-back:hover {
  border-color: var(--pg-primary);
  box-shadow: 0 10px 24px rgba(18, 35, 27, 0.1);
}

.pg-hcp-card-shell #AutoNumber2 td.GENERAL {
  background: #f6faf8 !important;
}

.pg-hcp-card-shell #AutoNumber2 tr:first-child td.GENERAL,
.pg-hcp-card-shell #AutoNumber2 tr:nth-child(8) td.GENERAL {
  background: #eaf2ee !important;
  color: var(--pg-ink) !important;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.pg-hcp-card-shell #AutoNumber2 font,
.pg-hcp-card-shell #AutoNumber2 span {
  color: inherit !important;
  font-size: inherit !important;
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell {
  position: relative;
  background: #fff !important;
  color: #061610 !important;
  font-weight: 950;
  isolation: isolate;
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark] {
  background-image: none !important;
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--score-mark-color, #111111);
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark="birdie"],
.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark="eagle"] {
  --score-mark-color: #e00012;
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark="birdie"]::before,
.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark="eagle"]::before {
  border-radius: 999px;
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark="eagle"]::before,
.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-score-cell[data-score-mark="double-bogey"]::before {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--score-mark-color, #111111);
}

.pg-hcp-card-shell #AutoNumber2 td.pg-hcp-ceg-cell {
  background: #fff !important;
  color: #d00000 !important;
  font-weight: 950;
}

.pg-hcp-ceg-inline {
  color: #d00000 !important;
  font-weight: 950;
}

.pg-hcp-ghin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
}

.pg-hcp-ghin-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--pg-line);
  border-left: 5px solid var(--pg-primary);
  border-radius: var(--pg-radius);
  background: linear-gradient(135deg, #fff, var(--pg-surface-soft));
}

.pg-hcp-ghin-card.is-inactive {
  border-left-color: #b42318;
}

.pg-hcp-ghin-card span,
.pg-hcp-ghin-card dt {
  color: var(--pg-muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pg-hcp-ghin-card strong {
  display: block;
  margin-top: 3px;
  color: var(--pg-ink);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1.05;
}

.pg-hcp-ghin-card p,
.pg-hcp-ghin-card small {
  margin: 3px 0 0;
  color: var(--pg-muted);
  font-weight: 800;
}

.pg-hcp-ghin-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0;
}

.pg-hcp-ghin-card dl div {
  padding: 9px;
  border-radius: var(--pg-radius);
  background: #fff;
  text-align: center;
}

.pg-hcp-ghin-card dd {
  margin: 0;
  color: var(--pg-ink);
  font-size: 1.05rem;
  font-weight: 950;
}

@media (max-width: 900px) {
  .pg-hcp-player-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
  }

  .pg-hcp-player-card .pg-hcp-powered {
    display: none;
  }

  .pg-hcp-player-photo {
    flex: 0 0 auto;
  }

  .pg-hcp-player-main {
    flex: 1 1 260px;
    min-width: 0;
  }

  .pg-hcp-player-photo img {
    width: 104px;
    height: 104px;
  }

  .pg-hcp-player-metrics {
    flex: 1 0 100%;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .pg-hcp-section-head,
  .pg-hcp-converter-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .pg-hcp-revision-head {
    align-items: center;
    flex-direction: row;
  }

  .pg-hcp-section-head.pg-hcp-revision-head p {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .pg-hcp-revision-list,
  .pg-hcp-section-head.pg-hcp-revision-head h2 {
    padding-left: 0;
  }

  .pg-hcp-converter-toolbar input {
    max-width: none;
  }

  .pg-hcp-revision-row {
    grid-template-columns: minmax(0, 1fr) 86px 86px;
  }
}

@media (max-width: 640px) {
  .pg-hcp-shell {
    width: min(100% - 16px, 1180px);
    margin-top: 24px;
  }

  .pg-hcp-search-row {
    grid-template-columns: 1fr;
  }

  .pg-hcp-search-row .btn {
    width: 100%;
  }

  .pg-hcp-results-head {
    align-items: stretch;
    flex-direction: column;
  }

  .pg-hcp-player-card {
    gap: 12px;
    padding: 16px;
    padding-top: 18px;
  }

  .pg-hcp-player-photo {
    flex: 0 0 auto;
  }

  .pg-hcp-player-main {
    flex: 1 1 180px;
  }

  .pg-hcp-player-photo img {
    width: 82px;
    height: 82px;
    border-width: 4px;
  }

  .pg-hcp-player-main h1 {
    font-size: 1.7rem;
    line-height: 1;
  }

  .pg-hcp-player-metrics div,
  .pg-hcp-revision-stat {
    min-height: 62px;
    padding: 8px;
  }

  .pg-hcp-player-metrics strong,
  .pg-hcp-revision-stat strong {
    font-size: 1.35rem;
  }

  .pg-hcp-course-grid,
  .pg-hcp-result-grid {
    grid-template-columns: 1fr;
  }

  .pg-hcp-course-card {
    grid-template-columns: minmax(0, 1fr) 58px;
    padding: 12px;
  }

  .pg-hcp-course-card > strong {
    font-size: 1.35rem;
  }

  .pg-hcp-revision-row {
    grid-template-columns: minmax(0, 1fr) 66px 66px;
    gap: 6px;
    padding: 8px;
  }

  .pg-hcp-revision-main strong {
    white-space: normal;
  }

  .pg-hcp-revision-main small {
    font-size: 0.74rem;
  }

  .pg-hcp-revision-logo {
    width: 96px;
    max-width: 32%;
  }

  .pg-hcp-card-wrap {
    padding: 8px;
  }

  .pg-hcp-card-shell #AutoNumber2 td {
    min-width: 27px;
    padding: 5px 2px !important;
    font-size: 0.82rem;
  }

  .pg-hcp-card-shell #AutoNumber2 tr:first-child td.GENERAL,
  .pg-hcp-card-shell #AutoNumber2 tr:nth-child(8) td.GENERAL {
    font-size: 0.72rem;
  }

  .pg-hcp-ghin-card dl {
    grid-template-columns: 1fr;
  }
}

a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

#load {
  backdrop-filter: blur(3px);
}

#bodyframe {
  width: min(100% - 28px, 1280px);
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 24px;
}

.headermain {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 0;
  padding: 0;
  border-bottom: 1px solid rgba(23, 33, 27, 0.08);
  box-shadow: 0 10px 30px rgba(18, 35, 27, 0.08);
}

.headermain .container {
  max-width: 1280px !important;
}

.headermain .navbar {
  min-height: 82px;
  padding: 10px 14px !important;
}

.navbar-brand img {
  max-height: 96px !important;
  max-width: 220px !important;
  object-fit: contain;
}

.navbar-toggler {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
}

.navbar-collapse {
  align-items: center;
}

.navbar-nav {
  gap: 8px;
}

.nav-item,
.nav-item-logout {
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
}

.nav-item.dropdown,
.nav-item2.dropdown {
  overflow: visible;
  position: relative;
}

.nav-item .nav-link {
  min-width: 86px;
  min-height: 62px;
  padding: 9px 11px !important;
  color: var(--pg-ink) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  line-height: 1.1;
}

.nav-item .nav-link i {
  color: var(--pg-primary);
  font-size: 18px;
}

.nav-item:hover,
.nav-item:focus-within {
  border-color: var(--pg-primary);
  box-shadow: 0 8px 22px rgba(18, 35, 27, 0.08);
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  background: var(--pg-primary-soft);
}

.dropdown-menu {
  z-index: 1100;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius);
  box-shadow: var(--pg-shadow);
  background: var(--pg-surface) !important;
}

.nav-item.dropdown:hover > .dropdown-menu,
.nav-item.dropdown:focus-within > .dropdown-menu,
.nav-item2.dropdown:hover > .dropdown-menu,
.nav-item2.dropdown:focus-within > .dropdown-menu {
  display: block;
}

.dropdown-menu .nav-item {
  overflow: visible;
  margin: 0 0 6px !important;
  border: 0;
  border-radius: 6px;
  background: transparent !important;
  text-align: left !important;
}

.dropdown-menu .nav-item:last-child {
  margin-bottom: 0 !important;
}

.dropdown-item,
.dropdown-menu .nav-link {
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: 10px 12px !important;
  border-radius: 6px;
  color: var(--pg-ink) !important;
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  white-space: normal;
}

.dropdown-item:hover,
.dropdown-menu .nav-link:hover {
  background: var(--pg-primary-soft);
  color: var(--pg-primary) !important;
}

@media (min-width: 992px) {
  .headermain .navbar-nav > .nav-item,
  .headermain .navbar-nav > .nav-item-logout {
    overflow: visible;
    position: relative;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .headermain .navbar-nav > .nav-item:hover,
  .headermain .navbar-nav > .nav-item:focus-within,
  .headermain .navbar-nav > .nav-item-logout:hover,
  .headermain .navbar-nav > .nav-item-logout:focus-within {
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .headermain .navbar-nav > .nav-item > .nav-link,
  .headermain .navbar-nav > .nav-item-logout > .nav-link {
    position: relative;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .headermain .navbar-nav > .nav-item > .nav-link:hover,
  .headermain .navbar-nav > .nav-item > .nav-link.active,
  .headermain .navbar-nav > .nav-item-logout > .nav-link:hover,
  .headermain .navbar-nav > .nav-item-logout > .nav-link.active {
    background: transparent !important;
  }

  .headermain .navbar-nav > .nav-item > .nav-link::before,
  .headermain .navbar-nav > .nav-item-logout > .nav-link::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 4px;
    border-radius: 999px;
    background: var(--pg-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
  }

  .headermain .navbar-nav > .nav-item:hover > .nav-link::before,
  .headermain .navbar-nav > .nav-item:focus-within > .nav-link::before,
  .headermain .navbar-nav > .nav-item > .nav-link.active::before,
  .headermain .navbar-nav > .nav-item-logout:hover > .nav-link::before,
  .headermain .navbar-nav > .nav-item-logout:focus-within > .nav-link::before,
  .headermain .navbar-nav > .nav-item-logout > .nav-link.active::before {
    transform: scaleX(1);
  }
}

.headermainmenu {
  min-height: 0;
  padding: 6px 0;
  border-bottom: 1px solid var(--pg-line);
}

.headermainmenu .nav-tabs {
  border: 0;
  gap: 6px;
}

.headermainmenu .nav-link {
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius) !important;
  background: var(--pg-surface);
  color: var(--pg-ink);
}

.headermainmenu .nav-link.active {
  background: var(--pg-primary);
  border-color: var(--pg-primary) !important;
  color: #ffffff;
}

.bannerad {
  width: min(100% - 28px, 970px);
  margin: 18px auto;
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
  box-shadow: 0 8px 24px rgba(18, 35, 27, 0.08);
}

.bannerimg {
  width: 100%;
  display: block;
}

#pfooter {
  width: min(100% - 28px, 1280px);
  max-width: 1280px;
  margin: 22px auto 0;
  padding: 18px;
  border-top: 1px solid var(--pg-line);
  text-align: center;
}

#footerp {
  padding: 10px 0 42px;
  color: var(--pg-muted);
  font-size: 14px;
  text-align: center;
}

.social-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: saturate(0.95);
}

#slider_news,
.contone {
  width: 100%;
  margin: 14px auto;
  overflow: hidden;
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius);
  background: var(--pg-surface) !important;
  box-shadow: 0 10px 30px rgba(18, 35, 27, 0.07);
}

#slider_news {
  position: relative;
  margin-bottom: 28px;
}

.contone {
  padding: 0;
}

.contone h1,
.contone h2,
.contone h3,
.contone h4,
.contone h5 {
  color: var(--pg-ink);
}

#bodyframe > div > h1,
#bodyframe > div > h2,
#bodyframe > h1,
#bodyframe > h2 {
  margin: 0;
  padding: 26px 6px 10px !important;
  color: var(--pg-ink) !important;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

#slider_news_main {
  display: flex;
  width: 100%;
  height: 495px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#slider_news_main::-webkit-scrollbar {
  display: none;
}

#slider_news_big,
.slider_news_small {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
}

#slider_news_big {
  height: 495px;
}

.slider_news_small {
  height: 495px;
}

.pg-news-pager {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pg-news-page {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.pg-news-page.is-active,
.pg-news-page:hover {
  background: var(--pg-primary);
}

.pg-news-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 50%;
  background: rgba(17,17,17,0.46);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.pg-news-arrow:hover {
  background: var(--pg-primary);
}

.pg-news-arrow-prev {
  left: 18px;
}

.pg-news-arrow-next {
  right: 18px;
}

.slider_news_band_big,
.slider_news_band_small {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  min-height: 104px;
  margin: 0;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.72));
}

.TITULONEWS,
.TITULONEWSSMALL {
  max-width: 900px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.TITULONEWS {
  font-size: clamp(26px, 4vw, 48px);
}

.TITULONEWSSMALL {
  font-size: clamp(26px, 4vw, 48px);
}

.pg-quick-actions {
  margin: 14px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.pg-action {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
  color: var(--pg-ink) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(18, 35, 27, 0.06);
}

.pg-action:hover {
  border-color: var(--pg-primary);
  color: var(--pg-ink) !important;
  transform: translateY(-1px);
}

.pg-action-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--pg-primary);
}

.pg-action-label {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.16;
}

.pg-events-panel {
  margin: 28px auto 14px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
  box-shadow: 0 8px 22px rgba(18, 35, 27, 0.06);
  overflow: hidden;
}

.pg-events-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--pg-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pg-events-head h2 {
  margin: 0;
  color: var(--pg-ink);
  font-size: 20px;
  font-weight: 900;
}

.pg-events-head a {
  color: var(--pg-primary) !important;
  font-size: 14px;
  font-weight: 900;
}

.pg-events-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pg-event-row {
  min-height: 82px;
  padding: 14px 16px;
  border-right: 1px solid var(--pg-line);
  color: var(--pg-ink) !important;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.pg-event-row:last-child {
  border-right: 0;
}

.pg-event-row:hover {
  background: var(--pg-primary-soft);
}

.pg-latest-news {
  padding: 0 18px 20px;
}

.pg-news-page-list {
  width: 100%;
  margin: 14px auto;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
  box-shadow: 0 10px 30px rgba(18, 35, 27, 0.07);
}

.pg-news-section-head {
  padding: 18px 6px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pg-news-section-head h1,
.pg-news-section-head h2 {
  margin: 0;
  color: var(--pg-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.pg-news-section-head a {
  flex: 0 0 auto;
  color: var(--pg-primary) !important;
  font-size: 14px;
  font-weight: 900;
}

.pg-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.pg-news-grid-full {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.pg-news-card {
  min-height: 100%;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #ffffff;
  color: var(--pg-ink) !important;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(18, 35, 27, 0.06);
}

.pg-news-card:hover {
  border-color: var(--pg-primary);
  color: var(--pg-ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(18, 35, 27, 0.12);
}

.pg-news-card-media {
  min-height: 168px;
  background-color: var(--pg-surface-soft);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  place-items: center;
}

.pg-news-card-media-empty {
  color: var(--pg-primary);
  font-size: 34px;
}

.pg-news-card-body {
  min-height: 112px;
  padding: 14px 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pg-news-card-date {
  color: var(--pg-muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pg-news-card-title {
  color: var(--pg-ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.18;
}

.pg-event-date {
  min-width: 58px;
  padding: 7px 8px;
  border-radius: 6px;
  background: var(--pg-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.pg-event-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
}

.pg-event-arrow {
  color: var(--pg-primary);
  font-size: 13px;
}

.pg-section-title {
  margin: 0;
  padding: 22px 24px 10px;
  color: var(--pg-ink);
  font-size: 22px;
  font-weight: 900;
}

.card {
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius) !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 35, 27, 0.07);
}

.card-img-top {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  color: var(--pg-ink);
}

.bg-success,
.btn-success {
  background-color: var(--pg-success, var(--pg-primary)) !important;
  border-color: var(--pg-success, var(--pg-primary)) !important;
}

.text-success {
  color: var(--pg-success, var(--pg-primary)) !important;
}

.fixturerecord {
  width: calc(100% - 24px);
  margin: 12px auto;
  border: 1px solid var(--pg-line);
  border-left: 4px solid var(--pg-primary);
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
}

.pg-event-summary {
  width: min(100% - 32px, 1180px);
  margin: 18px auto 28px;
  color: var(--pg-ink);
}

.pg-event-heading {
  padding: 4px 2px 16px;
}

.pg-event-heading p {
  margin: 0 0 6px;
  color: var(--pg-primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.pg-event-heading h1 {
  margin: 0;
  color: var(--pg-ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.pg-event-hero {
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #ffffff;
  box-shadow: var(--pg-shadow);
}

.pg-event-hero img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.pg-event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.pg-event-layout-wide {
  grid-template-columns: 1fr;
}

.pg-event-agvm {
  grid-column: 1 / -1;
}

.pg-event-agvm > .row {
  margin: 0 !important;
  max-width: none !important;
  border: 1px solid var(--pg-line);
  background: var(--pg-surface-soft) !important;
}

.pg-event-main,
.pg-event-side,
.pg-event-section {
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface);
  box-shadow: 0 10px 28px rgba(18, 35, 27, 0.07);
}

.pg-event-main {
  display: grid;
  gap: 16px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pg-event-section,
.pg-event-side {
  padding: 18px;
}

.pg-event-section-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--pg-primary);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.pg-event-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pg-event-action {
  min-height: 48px;
  padding: 11px 13px;
  border-radius: var(--pg-radius);
  background: var(--pg-primary);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none !important;
}

.pg-event-action:hover {
  background: var(--pg-primary-dark);
  color: #ffffff !important;
  box-shadow: 0 10px 18px rgba(18, 35, 27, 0.16);
}

.pg-event-action i,
.pg-event-file i {
  flex: 0 0 auto;
}

.pg-event-text {
  margin: 0 0 14px;
  color: var(--pg-ink);
  font-size: 18px;
  line-height: 1.5;
}

.pg-event-text:last-child {
  margin-bottom: 0;
}

.pg-event-text p {
  margin: 0 0 12px;
}

.pg-event-lead {
  font-size: 21px;
  font-weight: 800;
}

.pg-event-organizer,
.pg-event-prize,
.pg-event-champion {
  padding: 12px 14px;
  border-left: 4px solid var(--pg-primary);
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
}

.pg-event-side {
  position: sticky;
  top: 116px;
}

.pg-event-subtitle {
  margin: 16px 0 8px;
  color: var(--pg-muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.pg-event-file {
  width: 100%;
  min-height: 46px;
  margin: 0 0 9px;
  padding: 11px 12px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
  color: var(--pg-ink) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
}

.pg-event-file:hover {
  border-color: var(--pg-primary);
  color: var(--pg-primary) !important;
}

.pg-event-file-primary {
  border-color: var(--pg-primary);
  background: var(--pg-primary);
  color: #ffffff !important;
}

.pg-event-file-primary:hover {
  background: var(--pg-primary-dark);
  color: #ffffff !important;
}

.pg-event-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.pg-event-gallery .pg-event-section-title {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.pg-event-gallery-item {
  overflow: hidden;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft);
  display: block;
}

.pg-event-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  display: block;
}

.form-select,
.form-control {
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius) !important;
  background-color: #ffffff !important;
  color: var(--pg-ink);
  box-shadow: none !important;
}

.form-select:focus,
.form-control:focus {
  border-color: var(--pg-primary) !important;
  box-shadow: 0 0 0 0.2rem var(--pg-primary-soft) !important;
}

.btn,
button.btn {
  border-radius: var(--pg-radius);
  font-weight: 800;
}

.btn-primary,
.btn-outline-primary.active,
.btn-outline-primary:hover {
  border-color: var(--pg-primary) !important;
  background-color: var(--pg-primary) !important;
  color: #ffffff !important;
}

.btn-outline-primary {
  border-color: var(--pg-primary) !important;
  color: var(--pg-primary) !important;
}

#sc_leader,
#sc_resultados,
#sc_teetimes,
#sc_inscr,
#boton,
.boton,
#golf_bot {
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--pg-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 8px 18px rgba(18, 35, 27, 0.12);
}

#sc_leader,
#boton,
.boton,
#golf_bot {
  background-color: var(--pg-leader-bg, var(--pg-primary));
}

#sc_resultados {
  background-color: var(--pg-results-bg, var(--pg-primary));
}

#sc_teetimes {
  background-color: var(--pg-teetimes-bg, var(--pg-primary));
}

#sc_inscr {
  background-color: var(--pg-entries-bg, var(--pg-primary));
}

#fotoNoticia img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

#resultspublico,
#leaderboard,
.table-responsive,
table {
  max-width: 100%;
}

/* Scoring and leaderboard redesign */
.btn-group[aria-label="NavScoring"] {
  width: min(100% - 24px, 760px) !important;
  margin: 18px auto !important;
  padding: 6px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: var(--pg-surface-soft) !important;
  box-shadow: 0 8px 22px rgba(18, 35, 27, 0.06);
  gap: 6px;
}

.btn-group[aria-label="NavScoring"] .btn {
  min-height: 44px;
  border: 1px solid transparent !important;
  border-radius: var(--pg-radius) !important;
  background: var(--pg-surface);
  color: var(--pg-ink) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  box-shadow: none;
}

.btn-group[aria-label="NavScoring"] .btn:hover {
  border-color: var(--pg-primary) !important;
  background: var(--pg-primary-soft);
}

.btn-group[aria-label="NavScoring"] .btn.active {
  border-color: var(--pg-primary) !important;
  background: var(--pg-primary) !important;
  color: #ffffff !important;
}

.contone .btn[data-bs-toggle="dropdown"],
#capitulos {
  min-height: 44px;
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius) !important;
  background: var(--pg-surface) !important;
  color: var(--pg-primary) !important;
  box-shadow: 0 8px 20px rgba(18, 35, 27, 0.06);
}

.scoring-context-bar {
  min-height: 88px;
  padding: 12px 0 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.scoring-context-menu {
  width: min(100%, 320px) !important;
  float: none !important;
  margin-top: 0 !important;
}

.scoring-context-menu > .btn {
  width: 100%;
  min-width: 0 !important;
}

.scoring-poweredby {
  float: none !important;
  margin-left: auto;
}

.scoring-poweredby img {
  max-height: 48px !important;
  object-fit: contain;
  opacity: 0.82;
}

.scoring-chapters {
  width: 100% !important;
  float: none !important;
  margin: 8px 0 0 !important;
  padding: 12px 16px 0;
  border-bottom: 1px solid var(--pg-line);
  background: var(--pg-surface);
}

.scoring-chapters p {
  padding: 0;
  color: var(--pg-muted);
  font-size: 14px;
  font-weight: 800;
}

.scoring-chapters #capitulos {
  margin: 8px 0 12px !important;
}

.contone .btn[data-bs-toggle="dropdown"] p {
  color: inherit;
  font-weight: 900;
}

.drop-down-menu,
.drop-down-menu-dark,
.contone .dropdown-menu {
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius);
  background: var(--pg-surface) !important;
  box-shadow: var(--pg-shadow);
}

.contone .dropdown-item {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--pg-ink) !important;
  font-weight: 700;
}

.contone .dropdown-item:hover,
.contone .dropdown-item:focus {
  background: var(--pg-primary-soft);
  color: var(--pg-ink) !important;
}

#MainDIV,
#ContDIV {
  width: 100% !important;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--pg-surface);
}

#resultspublico {
  width: 100% !important;
  overflow-x: auto;
  overflow-y: visible;
  box-sizing: border-box;
  margin: 12px auto 28px !important;
  padding: 12px 12px 18px !important;
  background: var(--pg-surface);
}

#MainDIV > div,
#ContDIV > div {
  min-width: 0;
  width: 100%;
}

#MainDIV > div::after,
#ContDIV > div::after {
  content: "";
  display: block;
  clear: both;
}

.scoring-header-row,
.scoring-player-row {
  box-sizing: border-box;
  clear: both;
  display: flow-root;
  overflow: hidden;
  width: 100% !important;
}

.scoring-header-row {
  border: 0 !important;
  background: var(--pg-ink) !important;
}

.scoring-player-row {
  min-height: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid var(--pg-line) !important;
  background: #ffffff !important;
  transition: background-color 0.15s ease;
}

.scoring-player-row:hover {
  background: var(--pg-surface-soft) !important;
}

.HEADSCORINGi,
.HEADSCORING7,
.HEADSCORING7i,
.HEADSCORINGy,
.HEADSCORING9,
.HEADSCORING10,
.HEADSCORING24,
.HEADSCORINGr,
.HEADSCORINGt {
  min-height: 32px;
  padding: 7px 0 0 !important;
  background: var(--pg-ink);
  color: #ffffff !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
}

.scoring-header-row .HEADSCORINGi,
.scoring-header-row .HEADSCORING7,
.scoring-header-row .HEADSCORING7i,
.scoring-header-row .HEADSCORINGy,
.scoring-header-row .HEADSCORING9,
.scoring-header-row .HEADSCORING10,
.scoring-header-row .HEADSCORING24,
.scoring-header-row .HEADSCORINGr,
.scoring-header-row .HEADSCORINGt {
  border-bottom: 0 !important;
}

.HEADSCORINGrdx {
  float: left;
  visibility: hidden;
  width: 0;
  min-height: 0;
  padding: 0 !important;
  overflow: hidden;
}

.HEADSCORINGi p,
.HEADSCORING7 p,
.HEADSCORING7i p,
.HEADSCORINGy p,
.HEADSCORING9 p,
.HEADSCORING10 p,
.HEADSCORING24 p,
.HEADSCORINGrdx p,
.HEADSCORINGr p,
.HEADSCORINGt p {
  color: #ffffff;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.BODYSCORINGi,
.BODYSCORING7,
.BODYSCORING7i,
.BODYSCORINGy,
.BODYSCORING9,
.BODYSCORING10,
.BODYSCORINGr,
.BODYSCORINGt,
.BODYSCORINGname {
  min-height: 42px;
  padding: 10px 0 0 !important;
  border-bottom: 1px solid var(--pg-line);
  background: #ffffff;
  color: var(--pg-ink) !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 14px !important;
  overflow: hidden;
}

.BODYSCORINGrdx {
  float: left;
  visibility: hidden;
  width: 0;
  min-height: 0;
  padding: 0 !important;
  overflow: hidden;
}

.scoring-player-row .BODYSCORINGi,
.scoring-player-row .BODYSCORING7,
.scoring-player-row .BODYSCORING7i,
.scoring-player-row .BODYSCORINGy,
.scoring-player-row .BODYSCORING9,
.scoring-player-row .BODYSCORING10,
.scoring-player-row .BODYSCORINGr,
.scoring-player-row .BODYSCORINGt,
.scoring-player-row .BODYSCORINGname {
  min-height: 54px;
  border-bottom: 0 !important;
  background: transparent !important;
}

.BODYSCORINGname {
  padding: 8px 4px 0 !important;
  font-weight: 900;
}

.BODYSCORINGname p {
  color: var(--pg-ink);
  font-size: 15px;
  line-height: 1.12 !important;
}

.BODYSCORING10,
.BODYSCORINGt {
  font-weight: 900;
}

.BODYSCORING7 img,
.BODYSCORINGy img,
#flagy {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.scoring-col-my {
  width: 4% !important;
}

.scoring-col-pos {
  width: 6% !important;
}

.scoring-col-ini {
  width: 5% !important;
}

.scoring-col-flag {
  width: 4% !important;
}

.scoring-col-player {
  width: 27% !important;
}

.scoring-col-hole,
.scoring-col-rd,
.scoring-col-scr,
.scoring-col-r1,
.scoring-col-r2,
.scoring-col-r3,
.scoring-col-r4 {
  width: 6% !important;
}

.scoring-col-total {
  width: 12% !important;
}

.scoring-col-scr.pg-score-negative,
.BODYSCORING9.pg-score-negative {
  color: #d00000 !important;
  font-weight: 950;
}

.scoring-header-row .scoring-col-rd {
  display: block !important;
  float: left;
  visibility: visible;
  min-height: 32px;
  padding: 7px 0 0 !important;
  background: var(--pg-ink);
  color: #ffffff !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
  white-space: nowrap;
}

.scoring-player-row .scoring-col-rd {
  display: block !important;
  float: left;
  visibility: visible;
  min-height: 54px;
  padding: 10px 0 0 !important;
  background: transparent !important;
  color: var(--pg-ink) !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 900;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 1100px) {
  .HEADSCORINGi,
  .HEADSCORING7,
  .HEADSCORING7i,
  .HEADSCORINGy,
  .HEADSCORING9,
  .HEADSCORING10,
  .HEADSCORING24,
  .HEADSCORINGr,
  .HEADSCORINGt,
  .scoring-header-row .scoring-col-rd {
    min-height: 38px;
    padding-top: 9px !important;
    font-size: 14px !important;
  }

  .BODYSCORINGi,
  .BODYSCORING7,
  .BODYSCORING7i,
  .BODYSCORINGy,
  .BODYSCORING9,
  .BODYSCORING10,
  .BODYSCORINGr,
  .BODYSCORINGt,
  .BODYSCORINGname,
  .scoring-player-row .scoring-col-rd {
    font-size: 16px !important;
  }

  .scoring-player-row .BODYSCORINGi,
  .scoring-player-row .BODYSCORING7,
  .scoring-player-row .BODYSCORING7i,
  .scoring-player-row .BODYSCORINGy,
  .scoring-player-row .BODYSCORING9,
  .scoring-player-row .BODYSCORING10,
  .scoring-player-row .BODYSCORINGr,
  .scoring-player-row .BODYSCORINGt,
  .scoring-player-row .BODYSCORINGname,
  .scoring-player-row .scoring-col-rd {
    min-height: 60px;
  }

  .BODYSCORINGname p {
    font-size: 17px;
  }

  .BODYSCORING7 img,
  .BODYSCORINGy img,
  #flagy {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 900px) {
  #MainDIV,
  #ContDIV {
    overflow-x: hidden;
  }

  #MainDIV > div,
  #ContDIV > div {
    min-width: 0;
    width: 100% !important;
  }

  .scoring-col-my,
  .scoring-col-ini,
  .scoring-col-flag,
  .scoring-col-r1,
  .scoring-col-r2,
  .scoring-col-r3,
  .scoring-col-r4 {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .scoring-col-pos {
    width: 10% !important;
  }

  .scoring-col-player {
    width: 42% !important;
  }

  .scoring-col-hole {
    width: 10% !important;
  }

  .scoring-col-rd {
    width: 10% !important;
  }

  .scoring-col-scr {
    width: 10% !important;
  }

  .scoring-col-total {
    width: 18% !important;
  }

  .scoring-header-row .scoring-col-total,
  .scoring-player-row .scoring-col-total {
    display: block !important;
    float: left;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .scoring-header-row .scoring-col-total {
    background: var(--pg-ink) !important;
    color: #ffffff !important;
  }

  .BODYSCORINGname p {
    font-size: 14px;
    line-height: 1.16 !important;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .scoring-col-r1,
  .scoring-col-r2,
  .scoring-col-r3,
  .scoring-col-r4 {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .scoring-col-pos {
    width: 12% !important;
  }

  .scoring-col-player {
    width: 41% !important;
  }

  .scoring-col-hole {
    width: 12% !important;
  }

  .scoring-col-rd {
    width: 11% !important;
  }

  .scoring-col-scr {
    width: 11% !important;
  }

  .scoring-col-total {
    width: 13% !important;
  }

  .HEADSCORINGi,
  .HEADSCORING7,
  .HEADSCORING7i,
  .HEADSCORINGy,
  .HEADSCORING9,
  .HEADSCORING10,
  .HEADSCORING24,
  .HEADSCORINGr,
  .HEADSCORINGt,
  .scoring-header-row .scoring-col-rd {
    font-size: 10px !important;
  }

  .BODYSCORINGi,
  .BODYSCORING7,
  .BODYSCORING7i,
  .BODYSCORINGy,
  .BODYSCORING9,
  .BODYSCORING10,
  .BODYSCORINGr,
  .BODYSCORINGt,
  .BODYSCORINGname,
  .scoring-player-row .scoring-col-rd {
    font-size: 12px !important;
  }

  .scoring-player-row .BODYSCORINGi,
  .scoring-player-row .BODYSCORING7,
  .scoring-player-row .BODYSCORING7i,
  .scoring-player-row .BODYSCORINGy,
  .scoring-player-row .BODYSCORING9,
  .scoring-player-row .BODYSCORING10,
  .scoring-player-row .BODYSCORINGr,
  .scoring-player-row .BODYSCORINGt,
  .scoring-player-row .BODYSCORINGname,
  .scoring-player-row .scoring-col-rd {
    min-height: 58px;
  }

  .BODYSCORINGname {
    padding: 7px 2px 0 !important;
  }

  .BODYSCORINGname p {
    font-size: 12px;
    line-height: 1.12 !important;
  }
}

.THECUT {
  min-height: 38px;
  padding: 8px 10px;
  border-top: 1px solid var(--pg-line);
  border-bottom: 1px solid var(--pg-line);
  background: var(--pg-primary-soft) !important;
  color: var(--pg-primary) !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 900;
}

.HEADSCORINGSC {
  background: var(--pg-ink) !important;
  color: #ffffff !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-weight: 900;
}

.BODYSCORINGSC {
  background: var(--pg-primary) !important;
  color: #ffffff !important;
  font-family: "Roboto", Arial, sans-serif !important;
}

.BODYSCORINGCH {
  border-bottom: 1px solid var(--pg-line);
  background: #ffffff !important;
  color: var(--pg-ink) !important;
  font-family: "Roboto", Arial, sans-serif !important;
}

#resultspublico table {
  min-width: 0;
  border: 0 !important;
  border-radius: var(--pg-radius);
  overflow: hidden;
}

#resultspublico .pg-results-table {
  width: 100% !important;
  table-layout: fixed;
}

#resultspublico th,
#resultspublico td {
  border: 0 !important;
  border-bottom: 1px solid var(--pg-line) !important;
  background-color: #ffffff;
  color: var(--pg-ink);
}

#resultspublico th {
  background-color: var(--pg-ink) !important;
  color: #ffffff !important;
  font-weight: 900;
}

#resultspublico tr:nth-child(even) td {
  background-color: var(--pg-surface-soft);
}

#resultspublico .thrnom a,
#resultspublico a {
  color: var(--pg-ink) !important;
  font-weight: 900;
}

#resultspublico p {
  font-size: 14px !important;
  line-height: 1.15 !important;
}

#resultspublico .pg-results-pos {
  width: 6%;
}

#resultspublico .pg-results-player {
  width: 30%;
}

#resultspublico .pg-results-meta {
  width: 9%;
}

#resultspublico .pg-results-round {
  width: 7%;
}

#resultspublico .pg-results-split {
  width: 6%;
}

#resultspublico .pg-results-score {
  width: 10%;
}

#resultspublico .pg-results-total {
  width: 11%;
  font-weight: 900;
}

#resultspublico .pg-results-prize {
  width: 10%;
}

#resultspublico .pg-results-player p {
  overflow-wrap: anywhere;
}

@media (min-width: 1100px) {
  #resultspublico th {
    font-size: 15px !important;
  }

  #resultspublico p {
    font-size: 16px !important;
  }

  #resultspublico .pg-results-player p {
    font-size: 17px !important;
  }
}

@media (max-width: 900px) {
  #resultspublico {
    overflow-x: hidden;
  }

  #resultspublico .pg-results-table {
    min-width: 0;
    table-layout: fixed;
  }

  #resultspublico .pg-results-round {
    display: none !important;
  }

  #resultspublico .pg-results-latest,
  #resultspublico .pg-results-meta,
  #resultspublico .pg-results-split,
  #resultspublico .pg-results-score,
  #resultspublico .pg-results-total,
  #resultspublico .pg-results-prize {
    display: table-cell !important;
    visibility: visible !important;
  }

  #resultspublico .pg-results-pos {
    width: 6% !important;
  }

  #resultspublico .pg-results-player {
    width: 28% !important;
  }

  #resultspublico .pg-results-meta {
    width: 9% !important;
  }

  #resultspublico .pg-results-round {
    width: 8% !important;
  }

  #resultspublico .pg-results-split {
    width: 7% !important;
  }

  #resultspublico .pg-results-score {
    width: 9% !important;
  }

  #resultspublico .pg-results-total {
    width: 13% !important;
  }

  #resultspublico .pg-results-prize {
    width: 13% !important;
  }

  #resultspublico p {
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  #resultspublico .pg-results-round {
    display: none !important;
  }

  #resultspublico .pg-results-latest,
  #resultspublico .pg-results-meta,
  #resultspublico .pg-results-split,
  #resultspublico .pg-results-score,
  #resultspublico .pg-results-total,
  #resultspublico .pg-results-prize {
    display: table-cell !important;
    visibility: visible !important;
  }

  #resultspublico .pg-results-pos {
    width: 6% !important;
  }

  #resultspublico .pg-results-player {
    width: 26% !important;
  }

  #resultspublico .pg-results-meta {
    width: 9% !important;
  }

  #resultspublico .pg-results-round {
    width: 9% !important;
  }

  #resultspublico .pg-results-split {
    width: 7% !important;
  }

  #resultspublico .pg-results-score {
    width: 9% !important;
  }

  #resultspublico .pg-results-total {
    width: 13% !important;
  }

  #resultspublico .pg-results-prize {
    width: 14% !important;
  }

  #resultspublico th {
    font-size: 9px !important;
    padding: 7px 2px !important;
  }

  #resultspublico p {
    font-size: 12px !important;
  }

  #resultspublico .pg-results-player p {
    font-size: 12px !important;
    line-height: 1.12 !important;
  }
}

.titcontone {
  padding: 18px 20px 8px !important;
  color: var(--pg-ink) !important;
  font-family: "Roboto", Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 900;
}

@media (max-width: 700px) {
  .scoring-context-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .scoring-context-menu,
  .scoring-poweredby {
    width: 100% !important;
    max-width: none !important;
  }

  .scoring-poweredby p {
    text-align: left !important;
    padding: 0;
  }
}

.contone table {
  width: 100%;
  border-collapse: collapse !important;
}

.contone table td,
.contone table th {
  border-color: var(--pg-line) !important;
}

.contone table tr:nth-child(even) td {
  background-color: rgba(245, 248, 246, 0.72);
}

.contone iframe {
  border: 0;
  border-radius: var(--pg-radius);
}

.pg-login-screen {
  width: 100%;
  min-height: 100vh;
  padding: 56px 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #edf2ef);
}

.pg-login-card {
  width: min(100%, 460px);
  padding: 30px;
  border: 1px solid var(--pg-line);
  border-radius: var(--pg-radius);
  background: #ffffff;
  box-shadow: var(--pg-shadow);
  text-align: center;
}

.pg-login-card img {
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.pg-login-card .btn {
  width: 100%;
  max-width: 320px;
  min-height: 50px;
  background: var(--pg-primary);
  border-color: var(--pg-primary);
  color: #ffffff;
  font-size: 20px;
}

@media (max-width: 991px) {
  #bodyframe {
    width: min(100% - 20px, 920px);
  }

  .headermain {
    position: relative;
  }

  .headermain .navbar {
    min-height: 68px;
  }

  .navbar-collapse {
    padding: 10px 0 4px !important;
  }

  .navbar-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .nav-item .nav-link {
    min-width: 0;
    min-height: 58px;
  }

  #slider_news_main {
    width: 100%;
    height: 265px;
  }

  #slider_news_big,
  .slider_news_small {
    flex-basis: 100%;
    width: 100%;
    height: 265px;
    float: none;
    border-right: 0;
    border-bottom: 0;
  }
}

@media (max-width: 575px) {
  body.pg-site-shell {
    font-size: 15px;
  }

  #bodyframe {
    width: min(100% - 14px, 100%);
  }

  .navbar-brand img {
    max-height: 72px !important;
    max-width: 170px !important;
  }

  .navbar-nav {
    grid-template-columns: 1fr;
  }

  .pg-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pg-events-list {
    grid-template-columns: 1fr;
  }

  .pg-latest-news {
    padding: 0 10px 14px;
  }

  .pg-news-section-head {
    padding: 14px 2px 12px;
    align-items: flex-start;
  }

  .pg-news-grid,
  .pg-news-grid-full {
    grid-template-columns: 1fr;
  }

  .pg-event-row {
    border-right: 0;
    border-bottom: 1px solid var(--pg-line);
  }

  .pg-event-row:last-child {
    border-bottom: 0;
  }

  .pg-action {
    min-height: 84px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .pg-action-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .TITULONEWS {
    font-size: 25px;
  }

  .TITULONEWSSMALL {
    font-size: 20px;
  }

  .btn-group {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .btn-group .btn {
    width: 100%;
    border-radius: var(--pg-radius) !important;
    white-space: normal;
  }

  .pg-event-summary {
    width: min(100% - 14px, 100%);
    margin: 10px auto 18px;
  }

  .pg-event-heading {
    padding: 0 2px 12px;
  }

  .pg-event-heading h1 {
    font-size: 32px;
  }

  .pg-event-layout {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .pg-event-section,
  .pg-event-side {
    padding: 14px;
  }

  .pg-event-action-grid {
    grid-template-columns: 1fr;
  }

  .pg-event-text {
    font-size: 16px;
  }

  .pg-event-lead {
    font-size: 18px;
  }

  .pg-event-side {
    position: static;
  }

  .pg-event-gallery {
    grid-template-columns: 1fr;
  }

  .pg-event-gallery-item img {
    height: auto;
    max-height: 260px;
  }
}
