:root {
  --bg: #fff7f0;
  --surface: #fffdf9;
  --text: #3c2a21;
  --muted: #7b665e;
  --primary: #b86a53;
  --primary-hover: #9c543f;
  --accent: #f6d8b8;
  --shadow: 0 12px 28px rgba(139, 84, 57, 0.14);
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(180deg, #fff7f0 0%, #fffaf5 55%, #fff 100%);
  color: var(--text);
  line-height: 1.5;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9af95;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #f1d3be;
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid #f1d3be;
  outline-offset: 2px;
}

.container {
  width: min(1180px, 95%);
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid #edd8cb;
  background: rgba(255, 247, 240, 0.96);
  position: sticky;
  top: 0;
  backdrop-filter: blur(6px);
  z-index: 5;
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  flex-wrap: nowrap;
}

.brand-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
}

.brand-link:hover {
  color: var(--primary-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  min-width: 0;
}

.main-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #efdacb;
  border-radius: 999px;
  padding: 8px 15px;
  background: #fffaf4;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-link:hover {
  color: var(--primary);
  border-color: #e6bea5;
  background: #fff;
}

.nav-link.active {
  color: var(--primary);
  border-color: #d9af95;
  background: #fff5ea;
}

.auth-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.auth-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #efdacb;
  border-radius: 999px;
  padding: 8px 14px;
  background: #fffaf4;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.auth-link:hover {
  color: var(--primary);
  border-color: #d9af95;
  background: #fff;
}

.auth-link.active {
  color: var(--primary);
  border-color: #d9af95;
  background: #fff5ea;
}

.auth-link-primary {
  color: #fff;
  border-color: var(--primary);
  background: linear-gradient(180deg, #c77960 0%, var(--primary) 100%);
}

.auth-link-primary:hover {
  color: #fff;
  border-color: var(--primary-hover);
  background: var(--primary-hover);
}

.auth-user {
  color: #6e4a3b;
  font-weight: 600;
  padding: 8px 10px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.auth-logout {
  cursor: pointer;
}

main {
  padding: 28px 0 50px;
}

.hero {
  padding: 12px 0 28px;
  text-align: center;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
  color: var(--primary);
}

.subtitle {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.auth-hint {
  margin-top: 10px;
  color: #8a6758;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 340px);
  gap: 22px;
  justify-content: start;
}

.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid #f0dfd1;
  width: 100%;
}

@media (max-width: 420px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    justify-content: stretch;
  }
}

@media (max-width: 520px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  background: #f8f2ec;
}

.news-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6f3f2f;
}

.news-text {
  color: #5a433a;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.news-card.expanded .news-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.toggle-link {
  align-self: flex-start;
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.toggle-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.week-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f0dfd1;
  padding: 16px;
}

.week-title {
  color: #6f3f2f;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.day-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-item {
  border: 1px solid #edd8cb;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  padding: 12px;
}

.day-name {
  font-weight: 700;
  color: #614134;
  margin-bottom: 6px;
  text-transform: capitalize;
}

.event {
  color: #6f5a51;
  font-size: 0.95rem;
}

.event-speaker {
  margin-top: 6px;
  color: #614134;
  font-weight: 600;
}

.event-speaker-link {
  color: var(--primary);
  text-decoration: none;
}

.event-speaker-link:hover {
  text-decoration: underline;
}

.event-speaker-pending {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 6px;
  padding: 4px 10px;
  border: 1px solid #e7c7b3;
  border-radius: 999px;
  background: #fff3e9;
  color: #9a5a3f;
  font-size: 0.85rem;
  font-weight: 600;
}

.event-speaker-pending[hidden] {
  display: none;
}

.event-details-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.event-details-link:hover {
  text-decoration: underline;
}

.event-action {
  margin-top: 10px;
  border: 1px solid #d9af95;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff5ea;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.event-action:hover:enabled {
  border-color: var(--primary);
  background: #ffefe0;
}

.event-action:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.event-action-registered {
  color: #fff;
  border-color: #7e9d5c;
  background: #92b86a;
}

.form-wrap {
  display: flex;
  justify-content: center;
}

.auth-form {
  width: min(470px, 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.field-label {
  margin-top: 6px;
  color: #6e4a3b;
  font-weight: 600;
}

.field-input {
  border: 1px solid #dfbfaa;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field-input:focus {
  outline: 2px solid #f1d3be;
  border-color: #cd9274;
}

.submit-btn {
  margin-top: 12px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #c77960 0%, var(--primary) 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--primary-hover);
}

.form-message {
  min-height: 1.4em;
  margin-top: 6px;
  color: #4f7f3f;
  font-weight: 600;
}

.form-message.is-error {
  color: #a14d3d;
}

.event-empty {
  color: #8a6758;
}

.dashboard-section {
  padding-bottom: 16px;
}

body.modal-open {
  overflow: hidden;
}

.password-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(40, 24, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.password-modal-overlay[hidden] {
  display: none;
}

.password-modal-content {
  position: relative;
  width: min(520px, 96vw);
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.password-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid #efdacb;
  border-radius: 999px;
  background: #fffaf4;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.password-modal-form {
  width: 100%;
  margin-top: 8px;
}

.admin-overview {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.admin-stat-card {
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-stat-value {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.admin-stat-label {
  color: #7b665e;
  font-weight: 600;
}

.dashboard-note {
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 12px;
  padding: 14px;
  color: #6b5248;
}

.profile-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.profile-card,
.admin-event-card,
.admin-block {
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.profile-title {
  color: #6f3f2f;
  margin-bottom: 6px;
}

.profile-meta {
  color: #735e54;
  margin-bottom: 4px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 18px;
}

.admin-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-grid-single {
  grid-template-columns: minmax(280px, 380px) 1fr;
}

.admin-title {
  color: #6f3f2f;
  margin-bottom: 10px;
}

.admin-subtitle {
  color: #6f3f2f;
  font-size: 1rem;
}

.admin-section-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.admin-section {
  display: none;
}

.admin-section.is-active {
  display: block;
}

.admin-form-block {
  align-self: start;
}

.admin-form-block-wide {
  width: 100%;
}

.admin-form-header,
.admin-list-header,
.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-form {
  width: 100%;
  box-shadow: none;
  border: none;
  padding: 0;
  background: transparent;
}

.admin-form-block-wide .admin-form {
  max-width: none;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-preview-wrap {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #f0dfd1;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.admin-image-preview {
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ead2c0;
  margin-top: 8px;
  background: #fff7f0;
}

.admin-image-preview-event {
  max-width: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-image-preview-news {
  max-width: 340px;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f8f2ec;
}

.admin-image-preview-square {
  max-width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.admin-speaker-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-speaker-photo-block {
  margin-top: 2px;
}

.admin-preview-wrap-compact {
  padding: 10px;
}

.admin-subsection {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid #f0dfd1;
}

.admin-inline-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  color: #6b5248;
  font-weight: 600;
}

.admin-inline-option input {
  margin-top: 3px;
}

.admin-helper-text {
  margin-top: 8px;
  color: #7b665e;
}

.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.admin-form-actions-compact {
  margin-top: 8px;
}

.admin-form-actions-compact .auth-link {
  background: #fff;
}

.admin-publish-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.admin-publish-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #efdacb;
  border-radius: 12px;
  background: #fff;
  color: #6b5248;
  font-weight: 600;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #ead2c0;
  background: #fff5ea;
  color: var(--primary);
  font-weight: 700;
}

.admin-badge-secondary {
  background: #fffaf4;
  color: #7b665e;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto auto;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-search,
.admin-date-filter {
  min-width: 0;
}

.admin-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-gallery-block {
  margin-top: 18px;
}

.admin-actions {
  display: flex;
  gap: 8px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.admin-event-description {
  color: #5a433a;
  margin-top: 10px;
}

.analytics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analytics-card {
  background: #fff;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  padding: 14px;
}

.analytics-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.analytics-track {
  margin-top: 10px;
  width: 100%;
  height: 12px;
  background: #f7e8dd;
  border-radius: 999px;
  overflow: hidden;
}

.analytics-fill {
  height: 100%;
  min-width: 6px;
  background: linear-gradient(90deg, #cf866e 0%, #b86a53 100%);
}

.admin-news-preview-card {
  margin-top: 10px;
  border: 1px dashed #e4c7b4;
  width: min(340px, 100%);
}

.admin-news-preview-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  background: #f8f2ec;
  border-radius: 0;
}

.admin-news-preview-text {
  display: block;
  min-height: 3em;
  overflow: visible;
}

.admin-preview-size-note {
  margin-top: 10px;
}

.admin-attendees {
  margin-top: 8px;
  border-top: 1px solid #f0dfd1;
  padding-top: 10px;
}

.admin-attendees summary {
  cursor: pointer;
  color: var(--primary);
  font-weight: 600;
}

.attendees-list {
  padding-left: 18px;
  color: #6b5248;
  margin-top: 8px;
}

.field-textarea {
  min-height: 90px;
  resize: vertical;
}

.field-textarea-large {
  min-height: 140px;
}

.field-textarea-xl {
  min-height: 220px;
}

.admin-dropzone {
  margin-top: 8px;
  padding: 12px;
  border: 1px dashed #d9af95;
  border-radius: 12px;
  background: #fffaf4;
  color: #7b665e;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.admin-dropzone:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

.admin-dropzone.is-dragover {
  border-style: solid;
  border-color: var(--primary);
  background: #fff5ea;
  color: var(--primary);
}

.event-page-card,
.speaker-page-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 18px;
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.event-page-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.event-page-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-page-description {
  color: #5a433a;
}

.speaker-mini {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.speaker-mini-photo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0dfd1;
}

.speaker-page-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.speaker-page-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.gallery-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(180px, 220px) auto;
  gap: 10px;
  margin-bottom: 14px;
}

.gallery-card {
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.gallery-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.gallery-media:focus-visible {
  outline: 3px solid #f1d3be;
  outline-offset: 2px;
}

.gallery-pagination {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.gallery-page-info {
  color: #735e54;
  font-weight: 600;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(40, 24, 16, 0.78);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  width: min(900px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #fffdf9;
  border: 1px solid #f0dfd1;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
  position: relative;
}

.lightbox-media {
  width: 100%;
  max-height: 62vh;
  border-radius: 10px;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid #efdacb;
  border-radius: 999px;
  background: #fffaf4;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 760px) {
  .site-header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
  }

  .brand-link {
    text-align: center;
  }

  .header-actions {
    flex-direction: column;
  }

  .main-nav,
  .auth-links {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .admin-overview,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-grid-single,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-speaker-stack {
    gap: 10px;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-form-header,
  .admin-list-header,
  .admin-card-head {
    flex-direction: column;
  }

  .event-page-card,
  .speaker-page-card {
    grid-template-columns: 1fr;
  }

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

  .calendar-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .week-card {
    padding: 12px;
  }

  .event-action {
    width: 100%;
  }

  .auth-form {
    padding: 14px;
  }
}

@media (max-width: 520px) {
  main {
    padding: 18px 0 34px;
  }

  .hero {
    padding: 8px 0 18px;
  }

  .site-header-inner {
    min-height: 0;
    gap: 10px;
  }

  .main-nav,
  .auth-links {
    gap: 6px;
  }

  .nav-link,
  .auth-link {
    padding: 7px 11px;
    font-size: 0.92rem;
  }

  .nav-link,
  .auth-link,
  .submit-btn,
  .event-action {
    min-height: 44px;
  }

  .field-input {
    min-height: 44px;
  }

  .field-textarea {
    min-height: 110px;
  }

  .gallery-toolbar .auth-link,
  .gallery-pagination .auth-link {
    width: 100%;
    text-align: center;
  }

  .gallery-media {
    min-height: 170px;
  }

  .gallery-pagination {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .gallery-page-info {
    text-align: center;
  }

  .event-page-card,
  .speaker-page-card {
    padding: 10px;
    gap: 12px;
  }

  .speaker-mini {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .profile-card,
  .admin-event-card,
  .admin-block {
    padding: 12px;
  }
}

footer {
  color: var(--muted);
  padding: 26px 0 36px;
  font-size: 0.95rem;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  text-align: center;
}

.footer-copy {
  margin: 0;
}

.telegram-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #efdacb;
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  background: #fffaf4;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.telegram-social:hover {
  color: var(--primary-hover);
  border-color: #e6bea5;
  background: #fff;
  box-shadow: var(--shadow);
}

.telegram-social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
