@charset "UTF-8";
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.layout-container {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}

.list--unstyled, .list--inline, .list--checked, .nav, .breadcrumb, .pagination, .list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.link-unstyled {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.link-unstyled:hover, .link-unstyled:focus {
  text-decoration: none;
  transition: all 0.3s ease;
}

.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.heading, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  margin-top: 0;
  margin-bottom: 16px;
}

.form-control, .form-select, .form-textarea {
  display: block;
  width: 100%;
  padding: 8px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.form-control:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #FF8400;
  box-shadow: 0 0 0 3px rgba(255, 132, 0, 0.1);
}

.button, .button--filter, .button--more, .button--square, .button--slider, .reviews-toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}
.button:disabled, .button--filter:disabled, .button--more:disabled, .button--square:disabled, .button--slider:disabled, .reviews-toggle-button:disabled {
  opacity: 0.65;
  pointer-events: none;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* 220px = высота фиксированной шапки */
h2[id^=term-],
#first-program,
#map-section {
  scroll-margin-top: 220px; /* высота хедера */
}
@media screen and (max-width: 768px) {
  h2[id^=term-],
  #first-program,
  #map-section {
    scroll-margin-top: 140px;
  }
}

body {
  margin: 0;
  font-size: 20px !important;
  font-family: var(--font-family-primary) !important;
  overflow-wrap: anywhere;
  line-height: 32px !important;
  font-weight: 400;
  color: #1f2937;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 768px) {
  body {
    font-size: 20px;
  }
}

h1, h2, h3, h4, h5, h6,
p,
ol,
ul,
dl,
blockquote,
figure {
  margin: 0;
}

article {
  margin: 60px auto;
}

ol,
ul {
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  ol,
  ul {
    font-size: 20px;
  }
}

a {
  color: #FF8400;
  transition: all 0.3s ease;
}
a:hover {
  color: #FF8400;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  a {
    font-size: 20px;
  }
}

p, span, a, li {
  font-size: 20px !important;
  font-family: var(--font-family-primary) !important;
  overflow-wrap: anywhere;
  line-height: 32px !important;
}

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

table {
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
*,
*:focus,
*:active {
  outline: none !important;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
h1, .h1 {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  color: #FF8400;
  text-transform: uppercase;
}

h2, .h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 1.75rem;
  }
}

h3, .h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h4, .h4 {
    font-size: 1.25rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  h5, .h5 {
    font-size: 1.125rem;
  }
}

h6, .h6 {
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  h6, .h6 {
    font-size: 1rem;
  }
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

dl {
  margin-bottom: 16px;
}

dt {
  font-weight: 700;
  margin-bottom: 4px;
}

dd {
  margin-bottom: 8px;
  margin-left: 0;
}
dd:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 16px;
  padding: 16px;
  border-left: 4px solid #FF8400;
  background-color: rgba(255, 132, 0, 0.05);
}
blockquote p {
  margin-bottom: 8px;
  font-style: italic;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote footer {
  font-size: 14px;
  color: #9ca3af;
}
blockquote footer::before {
  content: "— ";
}

small, .small {
  font-size: 14px;
}

mark, .mark {
  padding: 0.2em;
  background-color: #f59e0b;
}

.text-primary {
  color: #FF8400;
}

.text-secondary {
  color: #6c757d;
}

.text-success {
  color: #16a34a;
}

.text-danger {
  color: #dc2626;
}

.text-warning {
  color: #f59e0b;
}

.text-info {
  color: #0ea5e9;
}

.text-light {
  color: #6b7280;
}

.text-muted {
  color: #9ca3af;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

.font-italic {
  font-style: italic;
}

.list-inline li {
  display: inline-block;
  margin-right: 16px;
}
.list-inline li:last-child {
  margin-right: 0;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
body.user-logged-in header {
  position: sticky;
  top: -80px;
  z-index: 3;
}
body.user-logged-in .mobile-menu.is-open .mobile-menu__header {
  margin-top: 90px;
}

body.mobile-menu-open {
  overflow: hidden;
}
@media (max-width: 1450px) {
  body.mobile-menu-open {
    position: fixed;
    width: 100%;
  }
}

header {
  position: sticky;
  top: -140px;
  z-index: 3;
  box-shadow: 0px -5px 5px -2px rgba(196, 206, 214, 0.3) inset;
}
header.teacher-page__header {
  z-index: 0 !important;
  box-shadow: none;
}
@media (max-width: 1450px) {
  header {
    position: sticky;
    top: 0;
    background: #ffffff;
  }
}
@media (prefers-reduced-motion: reduce) {
  header * {
    transition: none !important;
  }
}

.header {
  background: #ffffff;
  width: 100%;
}
.header__content {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.header__top {
  padding: 24px 0;
}
@media (max-width: 1450px) {
  .header__top {
    padding: 10px 15px !important;
  }
}
@media (max-width: 576px) {
  .header__top {
    padding: 12px 0;
  }
}
.header__top-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1024px) {
  .header__top-container {
    gap: 24px;
  }
}
@media (max-width: 1450px) {
  .header__top-container {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
}
@media screen and (max-width: 475px) {
  .header__top-container {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0px;
  }
}
@media (max-width: 1450px) {
  .header__bottom {
    display: none;
  }
}
.header__bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header__bottom-container {
    gap: 24px;
  }
}
.header__logo-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-direction: row;
  text-align: left;
  width: 67%;
}
@media screen and (max-width: 1450px) {
  .header__logo-section {
    width: unset;
  }
}
@media (max-width: 1450px) {
  .header__logo-section {
    flex-direction: column;
    text-align: left;
    gap: 16px;
    max-width: none;
    width: 100%;
  }
}
.header__logo-section .logo {
  height: 88px;
  width: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1450px) {
  .header__logo-section .logo {
    order: 1;
    height: 40px;
    margin-right: auto;
  }
}
.header__logo-section .logo img,
.header__logo-section .site-logo img {
  height: 88px;
  width: auto;
}
@media screen and (max-width: 1450px) {
  .header__logo-section .logo img,
  .header__logo-section .site-logo img {
    height: 40px;
  }
}
.header__logo-section-wrapper {
  width: 100%;
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  align-items: center;
}
@media screen and (max-width: 1450px) {
  .header__logo-section-wrapper {
    flex-wrap: wrap;
    row-gap: 10px;
    -moz-column-gap: 24px;
         column-gap: 24px;
    align-items: center;
  }
}
@media screen and (max-width: 1450px) {
  .header__top-right {
    display: none;
  }
}
.header__title {
  width: 100%;
  max-width: 257px;
  font-weight: 700 !important;
  line-height: 100% !important;
  font-size: 16px !important;
}
.header__title span.header__title-text {
  color: #1f2937;
  text-transform: uppercase;
  white-space: wrap;
  font-size: 16px !important;
  overflow-wrap: unset;
  font-weight: 700 !important;
  line-height: 120% !important;
}
@media screen and (max-width: 1450px) {
  .header__title span.header__title-text {
    font-weight: 500 !important;
    font-size: 12px !important;
    letter-spacing: 1px;
    max-width: 220px;
    display: block;
  }
}
@media screen and (max-width: 1450px) {
  .header__title {
    font-weight: 500 !important;
    font-size: 12px !important;
    padding-top: 10px;
    border-top: 1px solid #878787;
    order: 4;
    width: 100%;
    max-width: none;
  }
}
.header__contacts {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
@media (max-width: 1450px) {
  .header__contacts {
    display: none;
  }
}
.header__contact-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.header__contact-item .header__contact-text {
  text-decoration-style: solid !important;
}
.header__contact-item .header__contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: all 0.3s ease;
}
.header__contact-item .header__contact-link {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #1f2937;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  line-height: 140%;
  transition: all 0.3s ease;
}
.header__contact-item .header__contact-link:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .header__contact-item .header__contact-link {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .header__contact-item .header__contact-link {
    font-size: 14px;
  }
}
.header__contact-item .header__contact-text {
  white-space: normal;
  width: 150px;
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.2;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.header__contact-item .header__contact-text:hover {
  color: var(--color-primary-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .header__contact-item .header__contact-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .header__contact-item .header__contact-text {
    font-size: 1.125rem;
  }
}
@media (max-width: 1450px) {
  .mobile-menu.is-open .header__contact-item {
    padding: 32px 9px 0;
    border-top: 1px solid #878787;
    margin: 0 15px;
  }
}
.header__contact-icon {
  color: #1f2937;
  flex-shrink: 0;
}
.header__contact-icon svg {
  width: 16px;
  height: 20px;
}
.header__contact-phone {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__contact-phone::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewbox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M17.487%2014.1383L13.422%2010.4423C13.2299%2010.2676%2012.9774%2010.1745%2012.7178%2010.1825C12.4583%2010.1905%2012.212%2010.2991%2012.031%2010.4853L9.63804%2012.9463C9.06204%2012.8363%207.90404%2012.4753%206.71204%2011.2863C5.52004%2010.0933%205.15904%208.93229%205.05204%208.36029L7.51104%205.96629C7.69745%205.78541%207.80617%205.53911%207.8142%205.27949C7.82223%205.01988%207.72892%204.76733%207.55404%204.57529L3.85904%200.511286C3.68408%200.318643%203.44092%200.20179%203.18119%200.185546C2.92146%200.169301%202.66564%200.254944%202.46804%200.424286L0.298038%202.28529C0.125149%202.4588%200.0219574%202.68974%200.00803782%202.93429C-0.00696218%203.18429%20-0.292962%209.10629%204.29904%2013.7003C8.30504%2017.7053%2013.323%2017.9983%2014.705%2017.9983C14.907%2017.9983%2015.031%2017.9923%2015.064%2017.9903C15.3086%2017.9766%2015.5394%2017.8729%2015.712%2017.6993L17.572%2015.5283C17.7421%2015.3313%2017.8283%2015.0757%2017.8124%2014.816C17.7966%2014.5563%2017.6798%2014.3131%2017.487%2014.1383Z%22%20fill%3D%22black%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.header__contact-phone a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__contact-phone a:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
}
.header__title-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  text-transform: uppercase;
  white-space: wrap;
}
@media (max-width: 1024px) {
  .header__title-text {
    font-size: 14px !important;
  }
}
@media (max-width: 1450px) {
  .header__title-text {
    font-size: 12px !important;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .header__title-text {
    font-size: 12px !important;
  }
}
@media (max-width: 1024px) {
  .header__search {
    min-width: 200px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1450px) {
  .header__search {
    display: none;
  }
}

.region-header h2,
.header h2 {
  display: none;
}

#block-soznanie-d11-branding {
  display: flex;
  align-items: center;
  gap: 16px;
}
#block-soznanie-d11-branding .site-logo img {
  height: 88px;
  width: auto;
}
@media screen and (max-width: 475px) {
  #block-soznanie-d11-branding .site-logo img {
    height: 40px;
  }
}
#block-soznanie-d11-branding .site-slogan {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
  text-transform: uppercase;
  white-space: wrap;
}
@media (max-width: 1450px) {
  #block-soznanie-d11-branding .site-slogan {
    font-size: 12px;
    line-height: 1.2;
  }
}

#block-soznanie-d11-phone {
  display: contents;
}
#block-soznanie-d11-phone .field {
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}
#block-soznanie-d11-phone .field a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
#block-soznanie-d11-phone .field a:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
}
#block-soznanie-d11-phone .field a:hover ~ .header__contact-phone-icon .header__contact-phone-icon-svg path {
  fill: var(--color-primary-orange);
  transition: all 0.3s ease;
}

.mobile-search-icon {
  display: none;
}
@media screen and (max-width: 1450px) {
  .mobile-search-icon {
    display: inline-block;
    order: 2;
    background: transparent;
    border: none;
    padding: 10px 0 0;
  }
}

@media (max-width: 1450px) {
  #block-main-menu {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1021;
}
@media (max-width: 1450px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }
}
.mobile-menu-toggle__icon {
  width: 16px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1f2937;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
}
@media (max-width: 1450px) {
  .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 30%;
    height: 100vh;
    background: #ffffff;
    z-index: 1050;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  }
  .mobile-menu.is-open {
    right: 0;
  }
  .mobile-menu.is-open #block-main-menu {
    display: flex;
    justify-content: center;
  }
  .mobile-menu.is-open .header__logo-section {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 10px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  .mobile-menu.is-open .mobile-menu__close {
    padding: 0;
    width: 24px;
    height: 24px;
  }
  .mobile-menu.is-open .mobile-menu__header {
    padding: 10px 15px;
    border-color: transparent;
  }
  .mobile-menu.is-open .mobile-menu__header .header__title {
    padding: 0;
  }
  .mobile-menu.is-open .mobile-menu__header .header__title-text {
    display: none;
  }
  .mobile-menu.is-open .mobile-menu__content {
    padding: 0px;
  }
  .mobile-menu.is-open .mobile-menu__content ul.menu__dropdown {
    padding: 0px;
    background-color: #F0FAFE;
  }
  .mobile-menu.is-open .menu__list {
    width: 100% !important;
  }
  .mobile-menu.is-open .menu__list .menu__item {
    border: none;
    margin: 0;
    width: 100%;
  }
  .mobile-menu.is-open .menu__list .menu__item .menu__link {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    text-transform: uppercase !important;
    padding: 16px 24px !important;
  }
  .mobile-menu.is-open .menu__list li.menu__item.menu__item--has-dropdown[data-menu-processed=true] .menu__link {
    font-weight: 600 !important;
    color: #000 !important;
  }
  .mobile-menu.is-open .menu__list li.menu__item.menu__item--has-dropdown[data-menu-processed=true] .menu__link .menu__dropdown-icon {
    border-top-color: #000 !important;
  }
  .mobile-menu.is-open .menu__list .menu__item.menu__item--has-dropdown.is-open ul.menu__dropdown {
    padding: 9px 24px;
    background-color: #F0FAFE;
  }
  .mobile-menu.is-open .menu__list .menu__item.menu__item--has-dropdown.is-open ul.menu__dropdown .menu__dropdown-item {
    padding: 16px 0;
    margin: 0;
  }
  .mobile-menu.is-open .menu__list .menu__item.menu__item--has-dropdown.is-open ul.menu__dropdown .menu__dropdown-item a {
    padding: 0;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 20px !important;
  }
  .mobile-menu.is-open .header__contact-item {
    padding: 32px 9px 0;
    border-top: 1px solid #878787;
    margin: 0 15px;
  }
  .mobile-menu.is-open .mobile-menu__contacts {
    padding: 32px 24px 0;
    border-color: transparent;
  }
  .mobile-menu.is-open .mobile-menu__contacts a {
    font-size: 18px !important;
  }
}
@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
  }
}
.mobile-menu__overlay {
  display: none;
}
@media (max-width: 1450px) {
  .mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu.is-open ~ .mobile-menu__overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  order: 3;
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}
.mobile-menu__content {
  padding: 24px;
}
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}
.mobile-menu__contacts a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-menu__contacts a:hover {
  color: #FF8400;
  transition: all 0.3s ease;
}
.mobile-menu__contacts a.mobile-menu__callback {
  text-decoration: underline;
  text-decoration-style: dotted;
}
.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}
.mobile-menu__phone svg {
  width: 18px;
  height: 18px;
}
.mobile-menu__callback {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #1f2937;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 2px;
}
.mobile-menu__callback:hover {
  text-decoration: none;
}
.mobile-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu__item {
  border-bottom: 1px solid #e5e7eb;
}
.mobile-menu__item:last-child {
  border-bottom: none;
}
.mobile-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.mobile-menu__link:hover, .mobile-menu__link.is-active {
  color: #FF8400;
}
.mobile-menu__dropdown-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.mobile-menu__item--has-dropdown.is-open .mobile-menu__dropdown-icon {
  transform: rotate(180deg);
}
.mobile-menu__dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(249, 250, 251, 0.5);
  border-radius: 4px;
  margin-top: 8px;
}
.mobile-menu__item--has-dropdown.is-open .mobile-menu__dropdown {
  margin-bottom: 16px;
}
.mobile-menu__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.mobile-menu__dropdown-item {
  padding: 0;
}
.mobile-menu__dropdown-link {
  display: block;
  padding: 8px 16px;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-menu__dropdown-link:hover, .mobile-menu__dropdown-link.is-active {
  color: #FF8400;
  background: rgba(255, 132, 0, 0.05);
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.footer {
  background: #2C2C2C;
  color: white;
  padding: 40px 32px 24px;
  width: 100%;
}

.footer__content,
.footer > .footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 32px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer h2 {
  display: none;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  margin-bottom: 8px;
}
.footer__logo img {
  height: 55px;
  width: 161px;
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact-content {
  display: flex;
  flex-wrap: wrap;
}
.footer__contact-content .text-body {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__contact-content .text-body:hover {
  color: var(--color-primary-orange);
  transition: all 0.3 ease;
}

.footer__contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: white;
  filter: brightness(0) invert(1);
}
.footer__contact-icon svg {
  width: 24px;
  height: 24px;
}

.footer__contact-btn {
  display: inline-block;
  background: transparent;
  border: none;
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 16px !important;
  margin-left: 5px;
  transition: all 0.3 ease;
}
.footer__contact-btn:hover {
  color: var(--color-primary-orange);
  transition: all 0.3 ease;
}

.footer__contact-item .text-body,
.footer__phone-block,
.footer__email-block {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px !important;
  line-height: 1.5;
  color: white;
}
.footer__contact-item .text-body a,
.footer__phone-block a,
.footer__email-block a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__contact-item .text-body a:hover,
.footer__phone-block a:hover,
.footer__email-block a:hover {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.footer__social-section {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-top: -8px;
}
.footer__social-section .footer__section-title {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: none;
}

.footer__social-links {
  display: flex;
  gap: 8px;
}

.footer__social-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social-title {
  font-size: 1.125rem;
  color: white;
  margin: 0;
  font-weight: 500;
  white-space: nowrap;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__social-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__center {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__center {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.footer__center .menu__item {
  line-height: 24px !important;
  margin: 0;
  padding: 0;
}
.footer__center a[href=""].menu__link {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0;
  margin-top: -4px;
  font-weight: 700;
  cursor: default;
}
.footer__center a[href=""].menu__link:hover {
  color: #fff;
}
.footer__center .menu__link {
  margin: 0;
  padding: 5px 0;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  line-height: 140% !important;
}
.footer__center .footer__center-second-block, .footer__center .footer__center-third-block {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}
.footer__center .footer__center-third-block {
  padding-left: 20px;
}

.footer__center .menu {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link.text-body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 110%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  color: white;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
}
.footer__nav-link.text-body:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
  text-decoration-color: var(--color-primary-orange);
}

.footer__section-title {
  color: white;
  margin: 0;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link,
.footer .menu__link {
  font-size: 1.125rem !important;
  color: white;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.footer__nav-link:hover,
.footer .menu__link:hover {
  transition: all 0.3s ease;
  text-decoration: none;
}

#block-soznanie-d11-main-sections .menu__list {
  flex-direction: column;
}
#block-soznanie-d11-main-sections .menu__list .menu__item {
  margin: 0;
}
#block-soznanie-d11-main-sections .menu__list .menu__item a {
  padding: 0;
}

#block-soznanie-d11-phone-footer a {
  font-size: 16px !important;
  text-decoration: underline;
}
#block-soznanie-d11-phone-footer a:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
  text-decoration: none;
}

#block-soznanie-d11-footer-main-menu .menu__item {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-decoration: underline;
  text-decoration-style: solid;
  padding: 0;
  margin: 0;
  border: none;
}
#block-soznanie-d11-footer-main-menu .menu__link {
  text-transform: none;
}
#block-soznanie-d11-footer-main-menu .menu__link--active,
#block-soznanie-d11-footer-main-menu .menu__link.is-active {
  border-bottom: none;
}

.footer__search-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__search-column .footer__nav {
  margin-bottom: 20px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #555;
  gap: 16px;
  margin-top: 32px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer__copyright,
.footer__credits {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 16px;
}

.footer__bottom > p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 20px !important;
  color: #fff;
}

.footer a.text-body {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 140% !important;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  color: white;
  padding: 0;
  margin: 0;
  transition: all 0.3s ease;
}
.footer a.text-body:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__credits-link {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: white;
  transition: all 0.3s ease;
}
.footer__credits-link:hover {
  color: var(--color-primary-orange);
  transition: all 0.3s ease;
  text-decoration-color: var(--color-primary-orange);
}

#block-soznanie-d11-branding-footer .site-logo img {
  height: 55px;
  width: auto;
}

#block-soznanie-d11-social-media h2 {
  display: block !important;
  font-size: 1.125rem;
  color: white;
  margin: 0 0 12px 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__right {
    grid-column: 1/-1;
    margin-top: 16px;
  }
  .footer__search-column {
    grid-column: 1/-1;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 24px 16px 16px;
  }
  .footer > .footer__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer__center {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__center a[href=""].menu__link {
    margin-bottom: 10px;
  }
  .footer__center .footer__center-second-block, .footer__center .footer__center-third-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .footer__center .footer__center-second-block .navigation, .footer__center .footer__center-third-block .navigation {
    height: -moz-fit-content;
    height: fit-content;
  }
  .footer__center .footer__center-third-block {
    padding-left: 0px;
  }
  .footer__right {
    grid-column: auto;
    margin-top: 0;
  }
  .footer__search-column {
    grid-column: auto;
    margin-top: 0;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer__credits {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 40px 15px;
  }
  .footer__content,
  .footer > .footer__content {
    grid-template-columns: 1fr;
    margin-top: 0px;
  }
  .footer__logo img {
    height: 55px;
    width: 161px;
  }
  .footer__social {
    gap: 8px;
  }
  .footer__social-icon {
    width: 24px;
    height: 24px;
  }
  .footer__section-title {
    font-size: 1.125rem;
  }
  .footer__nav-link,
  .footer .menu__link {
    font-size: 1.125rem;
  }
  .footer__search {
    --search-input-max-width: 400px;
    width: 100%;
  }
  .footer__search .search-input--dark {
    max-width: none;
  }
  .footer__search .search-input--light.search-input--medium:focus {
    border: 1px solid var(--color-primary-orange);
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer * {
    transition: none !important;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

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

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (min-width: 576px) {
  .grid-cols-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-sm-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-sm-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-sm-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-sm-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-sm-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-sm-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-md-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-md-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-md-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-md-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-lg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-lg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-lg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-lg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1285px) {
  .grid-cols-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-xl-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .grid-cols-xl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-xl-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .grid-cols-xl-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .grid-cols-xl-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .grid-cols-xl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

.gap-4 {
  gap: 24px;
}

.gap-5 {
  gap: 32px;
}

.col-span-1 {
  grid-column: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

@media (min-width: 576px) {
  .col-sm-span-1 {
    grid-column: span 1/span 1;
  }
  .col-sm-span-2 {
    grid-column: span 2/span 2;
  }
  .col-sm-span-3 {
    grid-column: span 3/span 3;
  }
  .col-sm-span-4 {
    grid-column: span 4/span 4;
  }
  .col-sm-span-5 {
    grid-column: span 5/span 5;
  }
  .col-sm-span-6 {
    grid-column: span 6/span 6;
  }
  .col-sm-span-7 {
    grid-column: span 7/span 7;
  }
  .col-sm-span-8 {
    grid-column: span 8/span 8;
  }
  .col-sm-span-9 {
    grid-column: span 9/span 9;
  }
  .col-sm-span-10 {
    grid-column: span 10/span 10;
  }
  .col-sm-span-11 {
    grid-column: span 11/span 11;
  }
  .col-sm-span-12 {
    grid-column: span 12/span 12;
  }
}
@media (min-width: 768px) {
  .col-md-span-1 {
    grid-column: span 1/span 1;
  }
  .col-md-span-2 {
    grid-column: span 2/span 2;
  }
  .col-md-span-3 {
    grid-column: span 3/span 3;
  }
  .col-md-span-4 {
    grid-column: span 4/span 4;
  }
  .col-md-span-5 {
    grid-column: span 5/span 5;
  }
  .col-md-span-6 {
    grid-column: span 6/span 6;
  }
  .col-md-span-7 {
    grid-column: span 7/span 7;
  }
  .col-md-span-8 {
    grid-column: span 8/span 8;
  }
  .col-md-span-9 {
    grid-column: span 9/span 9;
  }
  .col-md-span-10 {
    grid-column: span 10/span 10;
  }
  .col-md-span-11 {
    grid-column: span 11/span 11;
  }
  .col-md-span-12 {
    grid-column: span 12/span 12;
  }
}
@media (min-width: 992px) {
  .col-lg-span-1 {
    grid-column: span 1/span 1;
  }
  .col-lg-span-2 {
    grid-column: span 2/span 2;
  }
  .col-lg-span-3 {
    grid-column: span 3/span 3;
  }
  .col-lg-span-4 {
    grid-column: span 4/span 4;
  }
  .col-lg-span-5 {
    grid-column: span 5/span 5;
  }
  .col-lg-span-6 {
    grid-column: span 6/span 6;
  }
  .col-lg-span-7 {
    grid-column: span 7/span 7;
  }
  .col-lg-span-8 {
    grid-column: span 8/span 8;
  }
  .col-lg-span-9 {
    grid-column: span 9/span 9;
  }
  .col-lg-span-10 {
    grid-column: span 10/span 10;
  }
  .col-lg-span-11 {
    grid-column: span 11/span 11;
  }
  .col-lg-span-12 {
    grid-column: span 12/span 12;
  }
}
@media (min-width: 1285px) {
  .col-xl-span-1 {
    grid-column: span 1/span 1;
  }
  .col-xl-span-2 {
    grid-column: span 2/span 2;
  }
  .col-xl-span-3 {
    grid-column: span 3/span 3;
  }
  .col-xl-span-4 {
    grid-column: span 4/span 4;
  }
  .col-xl-span-5 {
    grid-column: span 5/span 5;
  }
  .col-xl-span-6 {
    grid-column: span 6/span 6;
  }
  .col-xl-span-7 {
    grid-column: span 7/span 7;
  }
  .col-xl-span-8 {
    grid-column: span 8/span 8;
  }
  .col-xl-span-9 {
    grid-column: span 9/span 9;
  }
  .col-xl-span-10 {
    grid-column: span 10/span 10;
  }
  .col-xl-span-11 {
    grid-column: span 11/span 11;
  }
  .col-xl-span-12 {
    grid-column: span 12/span 12;
  }
}
.layout.layout--twocol-section.layout--twocol-section--50-50.reviews .regions__wrapper,
.layout.layout--twocol-section.layout--twocol-section--50-50.basic .regions__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.reviews .regions__wrapper,
  .layout.layout--twocol-section.layout--twocol-section--50-50.basic .regions__wrapper {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.reviews .regions__wrapper .basic--first.layout__region.layout__region--first .block-views-blockreviews-block-1,
  .layout.layout--twocol-section.layout--twocol-section--50-50.basic .regions__wrapper .basic--first.layout__region.layout__region--first .block-views-blockreviews-block-1 {
    padding: 0;
  }
  .layout.layout--twocol-section.layout--twocol-section--50-50.reviews .regions__wrapper .basic--first.layout__region.layout__region--first .block-views-blockreviews-block-1 .view-pager__wrapper,
  .layout.layout--twocol-section.layout--twocol-section--50-50.basic .regions__wrapper .basic--first.layout__region.layout__region--first .block-views-blockreviews-block-1 .view-pager__wrapper {
    flex-direction: column !important;
    row-gap: 32px;
  }
  .layout.layout--twocol-section.layout--twocol-section--50-50.reviews .regions__wrapper .basic--first.layout__region.layout__region--first .block-views-blockreviews-block-1 .view-pager__wrapper .pager,
  .layout.layout--twocol-section.layout--twocol-section--50-50.basic .regions__wrapper .basic--first.layout__region.layout__region--first .block-views-blockreviews-block-1 .view-pager__wrapper .pager {
    width: 100%;
  }
}

.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper,
  .layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }
}
@media (max-width: 480px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper,
  .layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper {
    row-gap: 24px;
  }
}
.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--first,
.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--first,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--second {
  grid-auto-rows: 1fr;
  display: grid;
  row-gap: 32px;
}
.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--first .layout.layout--onecol,
.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second .layout.layout--onecol,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--first .layout.layout--onecol,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--second .layout.layout--onecol {
  height: 100%;
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--first .layout.layout--onecol,
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second .layout.layout--onecol,
  .layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--first .layout.layout--onecol,
  .layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--second .layout.layout--onecol {
    height: auto;
  }
}
.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--first .layout__region.layout__region--content,
.layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second .layout__region.layout__region--content,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--first .layout__region.layout__region--content,
.layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--second .layout__region.layout__region--content {
  height: 100%;
  display: grid;
  align-items: center;
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--first,
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second,
  .layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--first,
  .layout.layout--twocol-section.layout--twocol-section--50-50.grid .regions__wrapper .layout__region--second {
    row-gap: 24px;
    grid-auto-rows: auto;
  }
}

.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .regions__wrapper {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.contacts .regions__wrapper {
    grid-template-columns: 1fr;
  }
  .layout.layout--twocol-section.layout--twocol-section--50-50.contacts .regions__wrapper .layout__region--second {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--first .layout__region--content .text-formatted,
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second .layout__region--content .text-formatted {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second {
    display: flex !important;
    flex-direction: column-reverse !important;
  }
}
@media (max-width: 480px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50.info-block .regions__wrapper .layout__region--second .layout__region--content {
    margin-bottom: 0;
  }
}

.layout.layout--twocol-section.layout--twocol-section--50-50 {
  display: flex !important;
  flex-wrap: nowrap !important;
  margin-bottom: 130px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50 {
    gap: 24px !important;
    margin-bottom: 64px;
  }
}
@media (max-width: 480px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50 {
    gap: 24px !important;
  }
}
.layout.layout--twocol-section.layout--twocol-section--50-50 h2 {
  margin: 0 !important;
  text-transform: uppercase;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50 h2 {
    padding-bottom: 0;
    padding-top: 24px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .layout.layout--twocol-section.layout--twocol-section--50-50 h2 {
    padding-bottom: 0;
    padding-top: 4px;
  }
}
.layout.layout--twocol-section.layout--twocol-section--50-50 h2.professional-card__title {
  padding-bottom: 0;
}
.layout.layout--twocol-section.layout--twocol-section--50-50 .info-block__section p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.layout.layout--twocol-section.layout--twocol-section--50-50:last-child {
  margin-bottom: 0;
}

.layout--twocol-section--custom-gap {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 32px !important;
  margin-bottom: 130px;
}
.layout--twocol-section--custom-gap .layout__region--first {
  display: flex;
  row-gap: 32px;
  flex-direction: column;
}
.layout--twocol-section--custom-gap .layout__region--second {
  display: flex;
  row-gap: 32px;
  flex-direction: column;
}
@media (max-width: 768px) {
  .layout--twocol-section--custom-gap {
    gap: 24px !important;
  }
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.layout-container {
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-main, .main {
  flex: 1;
}

.layout-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .layout-content {
    padding: 0;
  }
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.block--block-content {
  margin-bottom: 128px;
}

.block--block-content--image-zoom {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 40px;
}
.block--block-content--image-zoom img {
  max-height: 335px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .block--block-content--image-zoom {
    margin: 0px;
  }
}

.block--block-content--image-link {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 40px;
  margin-top: 20px;
}
.block--block-content--image-link img {
  max-height: 335px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.button--primary {
  color: #000;
  background-color: #FF8400;
  border-color: #FF8400;
}
.button--primary:hover {
  color: #fff;
  background-color: rgb(216.75, 112.2, 0);
  border-color: rgb(204, 105.6, 0);
}
.button--secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.button--secondary:hover {
  color: #fff;
  background-color: rgb(91.8, 99.45, 106.25);
  border-color: rgb(86.4, 93.6, 100);
}
.button--success {
  color: #fff;
  background-color: #16a34a;
  border-color: #16a34a;
}
.button--success:hover {
  color: #fff;
  background-color: rgb(18.7, 138.55, 62.9);
  border-color: rgb(17.6, 130.4, 59.2);
}
.button--danger {
  color: #fff;
  background-color: #dc2626;
  border-color: #dc2626;
}
.button--danger:hover {
  color: #fff;
  background-color: rgb(188.8416666667, 30.4583333333, 30.4583333333);
  border-color: rgb(177.7333333333, 28.6666666667, 28.6666666667);
}
.button--warning {
  color: #000;
  background-color: #f59e0b;
  border-color: #f59e0b;
}
.button--warning:hover {
  color: #fff;
  background-color: rgb(209.0330708661, 134.5007874016, 8.5669291339);
  border-color: rgb(196.737007874, 126.588976378, 8.062992126);
}
.button--info {
  color: #fff;
  background-color: #0ea5e9;
  border-color: #0ea5e9;
}
.button--info:hover {
  color: #fff;
  background-color: rgb(11.9, 140.25, 198.05);
  border-color: rgb(11.2, 132, 186.4);
}
.button--sm {
  padding: 4px 8px;
  font-size: 14px;
}
.button--lg {
  padding: 16px 24px;
  font-size: 18px;
}
.button:disabled, .button--disabled {
  opacity: 0.65;
  pointer-events: none;
}
.button--outline {
  background-color: transparent;
}
.button--outline.button--primary {
  color: #FF8400;
  border-color: #FF8400;
  transition: all 0.3s ease;
}
.button--outline.button--primary:hover {
  color: #ffffff;
  background-color: #FF8400;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.button--outline.button--secondary {
  color: #6c757d;
  border-color: #6c757d;
  transition: all 0.3s ease;
}
.button--outline.button--secondary:hover {
  color: #ffffff;
  background-color: #6c757d;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.button--icon {
  padding: 8px;
}
.button--icon svg {
  width: 20px;
  height: 20px;
}
.button--block {
  display: block;
  width: 100%;
}

.button-group {
  display: inline-flex;
}
.button-group .button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.button-group .button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.button--filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.button--filter:hover {
  background-color: #f9fafb;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.button--filter.is-active {
  color: #FF8400;
  border-color: #FF8400;
  background-color: rgba(255, 132, 0, 0.05);
}
.button--filter .filter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.button--more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.button--more:hover {
  background-color: #f9fafb;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.button--more .button__text {
  font-size: 16px;
}
.button--more .button__arrow {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.button--more:hover .button__arrow {
  transform: translateX(4px);
}

.button--square {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.button--square .button__arrow {
  width: 52px;
  height: 52px;
}
.button--square:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.button--slider {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease;
}
.button--slider .button__arrow {
  width: 52px;
  height: 52px;
}
.button--slider:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.button--slider:active {
  transform: scale(1.01);
}

.reviews-toggle-button {
  display: block;
  margin: 20px auto 0;
  padding: 12px 24px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  background-color: rgba(232, 250, 253, 0.6);
  border: 1px solid rgba(51, 51, 51, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-toggle-button:hover {
  background-color: rgba(232, 250, 253, 0.8);
  border-color: rgba(51, 51, 51, 0.6);
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.reviews-toggle-button:active {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .button--lg {
    padding: 8px 16px;
    font-size: 16px;
  }
  .button--square,
  .button--slider {
    width: 40px;
    height: 40px;
  }
  .button--square .button__arrow,
  .button--slider .button__arrow {
    width: 40px;
    height: 40px;
  }
}
.action-links {
  margin: 1em 0;
  padding: 0;
  list-style: none;
}
[dir=rtl] .action-links {
  margin-right: 0;
}
.action-links li {
  display: inline-block;
  margin: 0 0.3em;
}
.action-links li:first-child {
  margin-left: 0;
}
[dir=rtl] .action-links li:first-child {
  margin-right: 0;
  margin-left: 0.3em;
}

.button-action {
  display: inline-block;
  padding: 0.2em 0.5em 0.3em;
  text-decoration: none;
  line-height: 160%;
}
.button-action::before {
  margin-left: -0.1em;
  padding-right: 0.2em;
  content: "+";
  font-weight: 900;
}
[dir=rtl] .button-action::before {
  margin-right: -0.1em;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0.2em;
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
  .button--more .button__arrow {
    transition: none;
  }
  .button--slider:hover {
    transform: none;
  }
  .button--slider:active {
    transform: none;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.card__header {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.card__header h3 {
  margin: 0;
  font-size: 18px;
}
.card__body {
  padding: 16px;
}
.card__footer {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}
.card__image img {
  width: 100%;
  height: auto;
  display: block;
}
.card__image--top {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.card__image--bottom {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.card__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.card__text {
  margin: 0;
  color: #6b7280;
}
.card__link {
  color: #FF8400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.card__link:hover {
  text-decoration: underline;
  transition: all 0.3s ease;
}
.card--event .event-card__content .field--name-title {
  transition: all 0.3s ease;
}
.card--event .event-card__content .field--name-title:hover {
  color: rgb(178.5, 92.4, 0);
  transition: all 0.3s ease;
}
.card--primary {
  border-color: #FF8400;
}
.card--primary .card__header {
  background-color: #FF8400;
  color: #ffffff;
}
.card--secondary {
  border-color: #6c757d;
}
.card--secondary .card__header {
  background-color: #6c757d;
  color: #ffffff;
}
.card--sm .card__header {
  padding: 8px;
}
.card--sm .card__body {
  padding: 8px;
}
.card--sm .card__footer {
  padding: 8px;
}
.card--lg .card__header {
  padding: 24px;
}
.card--lg .card__body {
  padding: 24px;
}
.card--lg .card__footer {
  padding: 24px;
}
@media (min-width: 768px) {
  .card--horizontal {
    display: flex;
  }
  .card--horizontal .card__image {
    flex: 0 0 33.333333%;
  }
  .card--horizontal .card__image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .card--horizontal .card__content {
    flex: 1;
  }
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
  .card__title {
    font-size: 16px;
  }
  .card__text {
    font-size: 14px;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.webform-submission-how-to-become-student-form .form-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.webform-submission-how-to-become-student-form .form-item.form-item-ya-hochu-poluchat-vashu-rassylku label {
  width: 100%;
  text-align: left;
}
.webform-submission-how-to-become-student-form .form-item.form-item-ya-hochu-poluchat-vashu-rassylku input {
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  margin-left: 16%;
}
.webform-submission-how-to-become-student-form .form-item.form-item-ya-hochu-poluchat-vashu-rassylku input:checked {
  accent-color: var(--color-primary-orange);
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form .form-item.form-item-ya-hochu-poluchat-vashu-rassylku input {
    margin-left: 0;
  }
}
.webform-submission-how-to-become-student-form .form-item.form-item-ya-hochu-poluchat-vashu-rassylku .description {
  margin-left: 0;
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form .form-item.form-item-ya-hochu-poluchat-vashu-rassylku {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.webform-submission-how-to-become-student-form .form-item.form-item-privacy-policy-link p {
  line-height: 61px;
}
.webform-submission-how-to-become-student-form .form-item.form-item-privacy-policy-link p .politika-obrabotki-link {
  color: #000;
  text-decoration: underline;
}
.webform-submission-how-to-become-student-form .form-item.form-item-privacy-policy-link p .politika-obrabotki-link:hover {
  color: var(--color-primary-orange);
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form .form-item.form-item-privacy-policy-link p {
    margin-left: 0;
    width: 30%;
    line-height: 22px;
  }
}
@media screen and (max-width: 576px) {
  .webform-submission-how-to-become-student-form .form-item.form-item-privacy-policy-link p {
    width: 100%;
  }
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form .form-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.webform-submission-how-to-become-student-form .form-actions input.button--primary {
  background-color: var(--color-primary-orange);
  margin-top: 15px;
  border-color: var(--color-primary-orange);
  max-width: 20%;
  width: 100%;
  color: #fff;
  padding-top: 5px;
  transition: all 0.3s ease;
}
.webform-submission-how-to-become-student-form .form-actions input.button--primary:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form .form-actions input.button--primary {
    max-width: none;
    width: 30%;
    margin-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .webform-submission-how-to-become-student-form .form-actions input.button--primary {
    width: 100%;
  }
}
.webform-submission-how-to-become-student-form label {
  width: 15%;
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form label {
    width: 100%;
    text-align: left;
  }
}
.webform-submission-how-to-become-student-form input {
  width: 30%;
  height: 61px;
  border: 1px solid #ccc;
  padding-left: 10px;
}
.webform-submission-how-to-become-student-form input:focus {
  border: 1px solid #ff8400;
}
@media screen and (max-width: 576px) {
  .webform-submission-how-to-become-student-form input {
    width: 100%;
  }
}
.webform-submission-how-to-become-student-form .description {
  color: #999;
}
@media screen and (max-width: 1210px) {
  .webform-submission-how-to-become-student-form .description {
    width: 30%;
  }
}
@media screen and (max-width: 576px) {
  .webform-submission-how-to-become-student-form {
    width: 100%;
  }
}

.form-group {
  margin-bottom: 16px;
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: #1f2937;
}

.form-control--sm {
  padding: 4px 8px;
  font-size: 14px;
}
.form-control--lg {
  padding: 16px 24px;
  font-size: 18px;
}
.form-control--error {
  border-color: #dc2626;
}
.form-control--error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 4px;
}
.form-check:last-child {
  margin-bottom: 0;
}

.form-check-input {
  float: left;
  margin-left: -1.5rem;
  width: 1rem;
  height: 1rem;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25rem;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-label {
  display: block;
  margin-bottom: 0;
  color: #1f2937;
}

.form-switch {
  padding-left: 2.5rem;
}
.form-switch .form-check-input {
  width: 2rem;
  margin-left: -2.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2rem;
  transition: background-position 0.15s ease-in-out;
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.view-filters .form--inline .form-item {
  margin: 0;
}

.view-filters .form-type-radio label {
  border-radius: 4px;
  transition: all 0.3s ease;
  padding: 2px 8px;
  font-size: 20px !important;
  line-height: 24px !important;
}
.view-filters .form-type-radio label:hover {
  background: #fff;
  border-color: #333;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.view-filters .fieldset-wrapper::before {
  top: 0px !important;
}

.form-type-radio label {
  border-radius: 4px;
  transition: all 0.3s ease;
}
.form-type-radio label:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.form-item-field-format-value {
  margin-right: 0;
}

.form-feedback {
  display: none;
  width: 100%;
  margin-top: 4px;
  font-size: 14px;
}
.form-feedback--valid {
  display: block;
  color: #16a34a;
}
.form-feedback--invalid {
  display: block;
  color: #dc2626;
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-control, .form-inline .form-select, .form-inline .form-textarea {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.form-inline .form-group {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 0;
}
.form-inline .form-check {
  width: auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
}
.form-row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 8px;
  padding-left: 8px;
}

.form-text {
  margin-top: 4px;
  font-size: 20px;
  color: #000;
  font-weight: 400;
  line-height: normal;
}

form .field-multiple-table {
  margin: 0;
}
form .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0;
}
[dir=rtl] form .field-multiple-table .field-multiple-drag {
  padding-left: 0;
  padding-right: inherit;
}
form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: 0.5em;
}
[dir=rtl] form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: 0;
  padding-left: 0.5em;
}

form .field-add-more-submit {
  margin: 0.5em 0 0;
}

.form-item,
.form-actions {
  margin-bottom: 1em;
}

tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
}

.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  font-size: 20px !important;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .form-composite > .fieldset-wrapper > .description,
  .form-item .description {
    width: 100%;
  }
}

label.option {
  display: inline;
  font-weight: normal;
}

.form-composite > legend,
.label {
  display: inline;
  height: 0;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: bold;
}

.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

.field__label {
  font-weight: bold;
}

.field--label-inline .field__label,
.field--label-inline .field__items {
  float: left;
}
[dir=rtl] .field--label-inline .field__label,
[dir=rtl] .field--label-inline .field__items {
  float: right;
}
.field--label-inline .field__label,
.field--label-inline > .field__item,
.field--label-inline .field__items {
  padding-right: 0.5em;
}
[dir=rtl] .field--label-inline .field__label,
[dir=rtl] .field--label-inline > .field__item,
[dir=rtl] .field--label-inline .field__items {
  padding-right: 0;
  padding-left: 0.5em;
}
.field--label-inline .field__label::after {
  content: ":";
}

details {
  margin-top: 1em;
  margin-bottom: 1em;
  border: 1px solid #e5e7eb;
}
details > .details-wrapper {
  padding: 0.5em 1.5em;
}

summary {
  padding: 0.2em 0.5em;
  cursor: pointer;
}

.form-textarea-wrapper textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}

.container-inline > div,
.container-inline > span {
  display: inline;
}
.container-inline label::after,
.container-inline .label::after {
  content: ":";
}
.container-inline .form-type-radios label::after,
.container-inline .form-type-checkboxes label::after {
  content: "";
}
.container-inline .form-type-radios .form-type-radio,
.container-inline .form-type-checkboxes .form-type-checkbox {
  margin: 0 1em;
}
.container-inline .form-actions, .container-inline.form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

.form--inline .form-item {
  float: left;
  margin-right: 0.5em;
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
[dir=rtl] .form--inline .form-item {
  float: right;
  margin-right: 0;
  margin-left: 0.5em;
}
.form--inline .form-item-separator {
  margin-top: 2.3em;
  margin-right: 1em;
  margin-left: 0.5em;
}
[dir=rtl] .form--inline .form-item-separator {
  margin-right: 0.5em;
  margin-left: 1em;
}
.form--inline .form-actions {
  clear: left;
}
[dir=rtl] .form--inline .form-actions {
  clear: right;
}

[dir=rtl] .views-filterable-options-controls .form-item {
  margin-right: 2%;
}

.exposed-filters .filters {
  float: left;
  margin-right: 1em;
}
[dir=rtl] .exposed-filters .filters {
  float: right;
  margin-right: 0;
  margin-left: 1em;
}
.exposed-filters .form-item {
  margin: 0 0 0.1em 0;
  padding: 0;
}
.exposed-filters .form-item label {
  float: left;
  width: 10em;
  font-weight: normal;
}
[dir=rtl] .exposed-filters .form-item label {
  float: right;
}
.exposed-filters .form-select {
  width: 14em;
}
.exposed-filters {
  /* Current filters */
}
.exposed-filters .current-filters {
  margin-bottom: 1em;
}
.exposed-filters .current-filters .placeholder {
  font-weight: bold;
  font-style: normal;
}
.exposed-filters .additional-filters {
  float: left;
  margin-right: 1em;
}
[dir=rtl] .exposed-filters .additional-filters {
  float: right;
  margin-right: 0;
  margin-left: 1em;
}

@media (max-width: 768px) {
  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }
  .form-inline .form-group {
    margin-bottom: 8px;
  }
  .form-inline .form-control, .form-inline .form-select, .form-inline .form-textarea {
    width: 100%;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
body.user-logged-in .gin-secondary-toolbar {
  margin-top: 30px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
}
.nav__item {
  margin-right: 16px;
}
.nav__item:last-child {
  margin-right: 0;
}
.nav__link {
  display: block;
  padding: 8px 0;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav__link:hover {
  color: #FF8400;
  transition: all 0.3s ease;
}
.nav__link.is-active {
  color: #FF8400;
  font-weight: 500;
}
.nav--vertical {
  flex-direction: column;
}
.nav--vertical .nav__item {
  margin-right: 0;
  margin-bottom: 8px;
}
.nav--vertical .nav__item:last-child {
  margin-bottom: 0;
}
.nav--pills .nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav--pills .nav__link:hover {
  background-color: #f9fafb;
  transition: all 0.3s ease;
}
.nav--pills .nav__link.is-active {
  color: #ffffff;
  background-color: #FF8400;
}
.nav--tabs {
  border-bottom: 1px solid #e5e7eb;
}
.nav--tabs .nav__item {
  margin-bottom: -1px;
}
.nav--tabs .nav__link {
  padding: 8px 16px;
  border: 1px solid transparent;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: all 0.3s ease;
}
.nav--tabs .nav__link:hover {
  border-color: #e5e7eb #e5e7eb #e5e7eb;
  transition: all 0.3s ease;
}
.nav--tabs .nav__link.is-active {
  color: #1f2937;
  background-color: #ffffff;
  border-color: #e5e7eb #e5e7eb #ffffff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 0;
  margin-bottom: 16px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child) {
  margin-right: 8px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9ca3af;
}
.breadcrumb__link {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb__link:hover {
  color: #FF8400;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.breadcrumb__current {
  color: #1f2937;
  font-weight: 500;
}

.pagination {
  display: flex;
  padding-left: 0;
}
.pagination__item:not(:first-child) {
  margin-left: -1px;
}
.pagination__item:first-child .pagination__link {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.pagination__item:last-child .pagination__link {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.pagination__link {
  position: relative;
  display: block;
  padding: 8px 16px;
  color: #1f2937;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.pagination__link:hover {
  z-index: 2;
  color: #FF8400;
  background-color: #f9fafb;
  transition: all 0.3s ease;
  border-color: #e5e7eb;
}
.pagination__link.is-active {
  z-index: 3;
  color: #ffffff;
  background-color: #FF8400;
  border-color: #FF8400;
}
.pagination__link.is-disabled {
  color: #9ca3af;
  pointer-events: none;
  background-color: #ffffff;
  border-color: #e5e7eb;
}

#block-main-menu {
  font-family: Inter, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1f2937;
  text-transform: none;
  width: 100%;
  background: transparent !important;
}
#block-main-menu * {
  font-family: Inter, sans-serif;
}

.menu {
  font-family: Inter, sans-serif;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}
.menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.menu__list .menu__item--has-dropdown {
  position: relative;
}
.menu__list .menu__item--has-dropdown .menu__link {
  cursor: default !important;
}
.menu__list .menu__item--has-dropdown:nth-of-type(2) .menu__dropdown-item:last-child, .menu__list .menu__item--has-dropdown:nth-of-type(3) .menu__dropdown-item:last-child, .menu__list .menu__item--has-dropdown:nth-of-type(4) .menu__dropdown-item:last-child {
  border-top: 1px solid #bac2d1;
}

.footer .menu__list {
  flex-direction: column;
}

.menu__link {
  text-decoration: none;
  color: #1f2937;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
}
.menu__link:hover {
  color: #FF8400;
}
.menu__link--active {
  color: #1f2937;
  padding-bottom: 6px;
  margin-bottom: 2px;
}
.menu__link--active:hover {
  color: #1f2937;
}

.menu__dropdown-icon {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #1f2937;
  margin-left: 8px;
  transition: all 0.3s ease, border-top-color all 0.2s ease-in-out;
  display: inline-block;
}

.menu__item--has-dropdown:hover .menu__dropdown-icon {
  transform: rotate(180deg);
  border-top-color: var(--color-primary-orange);
}

.menu__dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 250px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity all 0.2s ease-in-out, visibility all 0.2s ease-in-out, transform all 0.2s ease-in-out;
  pointer-events: none;
}

.menu__item--has-dropdown:hover .menu__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu__dropdown-item {
  padding: 4px 16px;
}

.menu__dropdown-link {
  text-decoration: none;
  color: #6b7280;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
}
.menu__dropdown-link:hover {
  color: #FF8400;
}

.menu-item--active-trail > .menu__link {
  color: #FF8400;
  font-weight: 600;
}

.menu__link:focus,
.menu__dropdown-link:focus {
  outline: 2px solid #FF8400;
  outline-offset: 2px;
}

div.tabs {
  margin: 1em 0;
}

nav.tabs {
  margin-top: 10px;
}
nav.tabs ul.tabs {
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
  display: flex;
  overflow: visible;
  margin-top: 10px;
}
nav.tabs ul.tabs li {
  padding: 10px 16px;
  margin: 0;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #EAEAEA;
}
nav.tabs ul.tabs li a {
  background: transparent;
  font-size: 20px;
  color: #646567;
  padding: 0;
}
nav.tabs ul.tabs li a:hover {
  color: var(--color-primary-orange);
}
nav.tabs ul.tabs li.is-active {
  border-top: 1px solid #EAEAEA;
  border-left: 1px solid #EAEAEA;
  border-right: 1px solid #EAEAEA;
  border-bottom: 1px solid #fff;
  position: relative;
}
nav.tabs ul.tabs li.is-active a {
  color: var(--color-primary-orange);
}
@media (max-width: 768px) {
  nav.tabs ul.tabs li.is-active {
    border-bottom: 1px solid #EAEAEA;
  }
}
@media (max-width: 768px) {
  nav.tabs ul.tabs {
    flex-direction: column;
  }
}

.tabs > li {
  display: inline-block;
  margin-right: 0.3em;
}
[dir=rtl] .tabs > li {
  margin-right: 0;
  margin-left: 0.3em;
}

.tabs a {
  display: block;
  padding: 0.2em 1em;
  text-decoration: none;
}
.tabs a.is-active {
  background-color: #f9fafb;
}
.tabs a:focus, .tabs a:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

button.link {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 1em;
}
label button.link {
  font-weight: 700;
}

ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}
[dir=rtl] ul.inline,
[dir=rtl] ul.links.inline {
  padding-right: 0;
  padding-left: 15px;
}

ul.inline li,
ul.links.inline li {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
}

ul.links a.is-active {
  color: #1f2937;
}

.breadcrumb {
  padding-bottom: 0.5em;
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
[dir=rtl] .breadcrumb ol {
  margin-right: 0;
}
.breadcrumb li {
  display: inline;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.breadcrumb li::before {
  content: " »";
}
.breadcrumb li:first-child::before {
  content: none;
}

@media (max-width: 768px) {
  .nav--responsive {
    flex-direction: column;
  }
  .nav--responsive .nav__item {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .nav--responsive .nav__item:last-child {
    margin-bottom: 0;
  }
  .pagination {
    justify-content: center;
  }
  .pagination__item:not(.show-mobile) {
    display: none;
  }
  .menu-molecule {
    border-radius: 0;
    box-shadow: none;
    padding: 8px 0;
  }
  .menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .menu__item {
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid #e5e7eb;
  }
  .footer .menu__item {
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: none;
  }
  .menu__link {
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }
  .menu__link--active {
    border-bottom: none;
    color: #FF8400;
    padding-bottom: 8px;
    margin-bottom: 0;
  }
  .menu__dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    transform: none;
    background: #f9fafb;
    padding-left: 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height all 0.2s ease-in-out, padding all 0.2s ease-in-out;
    pointer-events: auto;
  }
  .menu__item--has-dropdown.menu__item--open .menu__dropdown {
    max-height: 500px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .menu__dropdown-icon {
    transition: transform opacity 0.15s linear;
  }
  .menu__item--has-dropdown.menu__item--open .menu__dropdown-icon {
    transform: rotate(180deg);
  }
  .menu__dropdown-item {
    padding: 2px 0;
  }
  .menu__dropdown-link {
    padding: 8px 0;
  }
}
@media (max-width: 1024px) {
  .menu__list {
    justify-content: flex-start;
  }
  .menu__link {
    font-size: 16px;
  }
  .menu__dropdown-link {
    font-size: 14px;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.node--unpublished {
  background-color: #fff4f4;
}

.node--view-mode-full {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .node--view-mode-full .layout--onecol .layout__region {
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .node--view-mode-full .layout--onecol .layout__region {
    margin-bottom: 64px;
    margin-top: 64px;
  }
}
.node--view-mode-full h1 {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  color: #FF8400;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.node--view-mode-full h1.start-banner__title {
  color: #ffffff;
}
.node--view-mode-full h2 {
  margin-top: 40px !important;
}
@media (max-width: 768px) {
  .node--view-mode-full h1 {
    margin-bottom: 20px;
  }
  .node--view-mode-full h1,
  .node--view-mode-full h1 > span.field--name-title,
  .node--view-mode-full h2 > span.field--name-title {
    font-size: 24px !important;
    line-height: 120% !important;
    font-weight: 700 !important;
  }
  .node--view-mode-full h2 {
    font-weight: 700 !important;
  }
}

.node--type-teach-program.node--view-mode-full ul,
.node--type-blog-article.node--view-mode-full ul,
.node--type-project.node--view-mode-full ul,
.node--type-teacher.node--view-mode-full ul,
.node--type-page-editable.node--view-mode-full ul {
  list-style-type: disc !important;
  padding-left: 30px !important;
}
.node--type-teach-program.node--view-mode-full ul li,
.node--type-blog-article.node--view-mode-full ul li,
.node--type-project.node--view-mode-full ul li,
.node--type-teacher.node--view-mode-full ul li,
.node--type-page-editable.node--view-mode-full ul li {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .node--type-teach-program.node--view-mode-full,
  .node--type-blog-article.node--view-mode-full,
  .node--type-project.node--view-mode-full,
  .node--type-teacher.node--view-mode-full,
  .node--type-page-editable.node--view-mode-full {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.node--type-review.node--view-mode-full {
  margin: 40px 0;
}
.node--type-review.node--view-mode-full h1 {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 100%;
  color: #FF8400;
  text-transform: uppercase;
}
.node--type-review.node--view-mode-full img {
  max-width: 200px;
  width: 100%;
  max-height: 200px;
  height: 100%;
}
.node--type-review.node--view-mode-full .field--name-body {
  margin-bottom: 20px;
}

article.node--type-page-editable .field--name-field-images {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  article.node--type-page-editable table {
    width: 1440px !important;
  }
}

article.node--type-review.node--view-mode-teaser {
  margin: 0;
}

article.node--type-teacher.node--view-mode-teaser {
  padding: 0;
}

@media (max-width: 768px) {
  article.media--type-izobrazhenie.media--view-mode-full {
    margin: 20px auto;
  }
}

article.media--type-izobrazhenie.media--view-mode-image-blog-post-card {
  margin: 0;
}

article.node--view-mode-full h1 .field--name-title {
  text-transform: uppercase;
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-800);
  font-size: var(--font-size-40) !important;
  line-height: 1 !important;
}
@media (max-width: 768px) {
  article.node--view-mode-full h1 .field--name-title {
    font-size: var(--font-size-24) !important;
  }
}

.node--type-project {
  margin: 40px 0;
}
.node--type-project.node--view-mode-teaser {
  margin: 0;
}
.node--type-project.node--view-mode-full h2 .field--name-title {
  text-transform: uppercase;
}
.node--type-project.node--view-mode-full .field--name-field-project-image {
  margin: 30px 0;
}

.node--type-blog-article.blog-article-teaser {
  margin: 0;
  padding: 0;
}

.review-card__avatar {
  width: 120px;
}

.event-card--clickable {
  cursor: pointer;
  transition: all 0.3s ease;
}
.event-card--clickable:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.event-card--clickable:focus {
  outline: 1px solid #FF8400;
  outline-offset: 2px;
}
.event-card--clickable:active {
  transform: scale(1.01);
}

.node--type-teach-program {
  margin: 40px 0;
}
.node--type-teach-program.node--view-mode-full .teach-program__title {
  margin-bottom: 30px;
}
.node--type-teach-program.node--view-mode-full .teach-program__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.node--type-teach-program.node--view-mode-full .teach-program__type .field__label {
  font-weight: 600;
  margin-bottom: 10px;
}
.node--type-teach-program.node--view-mode-full .teach-program__image {
  margin: 20px 0;
}
.node--type-teach-program.node--view-mode-full .teach-program__image img {
  max-width: 100%;
  height: auto;
}
.node--type-teach-program.node--view-mode-full .teach-program__header .field__label {
  font-weight: 600;
  margin-bottom: 10px;
}
.node--type-teach-program.node--view-mode-full .teach-program__header .field__item {
  font-size: 1.2rem;
  line-height: 1.5;
}
.node--type-teach-program.node--view-mode-full .teach-program__enroll-btn a {
  background-color: var(--color-primary-orange);
  border-color: var(--color-primary-orange);
  max-width: 20%;
  width: 100%;
  color: #fff;
  padding-top: 5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
}
.node--type-teach-program.node--view-mode-full .teach-program__enroll-btn a:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 480px) {
  .node--type-teach-program.node--view-mode-full .teach-program__enroll-btn a {
    max-width: 100%;
  }
}
.node--type-teach-program.node--view-mode-full .teach-program__description .field__label {
  font-weight: 600;
  margin-bottom: 10px;
}
.node--type-teach-program.node--view-mode-full .teach-program__description .field__item {
  line-height: 1.6;
}
.node--type-teach-program.node--view-mode-full .teach-program__body {
  line-height: 1.6;
}
.node--type-teach-program.node--view-mode-full .teach-program__modules .field__label {
  font-weight: 600;
  margin-bottom: 15px;
}
.node--type-teach-program.node--view-mode-full .teach-program__modules .field__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.node--type-teach-program.node--view-mode-full .teach-program__modules .field__item {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.node--type-teach-program.node--view-mode-full .teach-program__modules .field__item:hover {
  background-color: #e9e9e9;
}
.node--type-teach-program.node--view-mode-full .teach-program__modules .field__item a {
  text-decoration: none;
  color: inherit;
}
.node--type-teach-program.node--view-mode-full .teach-program__modules .field__item a:hover {
  color: #FF8400;
}
.node--type-teach-program.node--view-mode-full .teach-program__links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}
.node--type-teach-program.node--view-mode-full .field--name-field-link a {
  display: block;
  background-color: var(--color-primary-orange);
  border-radius: 8px;
  border-color: var(--color-primary-orange);
  max-width: 10%;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.node--type-teach-program.node--view-mode-full .field--name-field-link a:hover {
  text-decoration: none;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .node--type-teach-program {
    padding-left: 15px;
    padding-right: 15px;
  }
  .node--type-teach-program.node--view-mode-full .field--name-field-link a {
    min-width: 100%;
  }
  .node--type-teach-program.node--view-mode-full .teach-program__title .field--name-title {
    font-size: 24px !important;
  }
}

.teach-programs-list .item-list {
  margin-bottom: 40px;
}
.teach-programs-list .item-list li {
  margin: 0;
  padding: 0;
}
.teach-programs-list .teach-programs-group-title {
  margin: 40px 0 30px 0;
  padding-bottom: 15px;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}
.teach-programs-list .teach-programs-group-title:first-child {
  margin-top: 0;
}
.teach-programs-list .teach-programs-group-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  row-gap: 40px;
  flex-direction: column;
}
.teach-programs-list .teach-program-list-item {
  list-style: none;
  margin: 0;
}
.teach-programs-list .teach-program-item {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.teach-programs-list .teach-program-item__image {
  width: 40%;
}
.teach-programs-list .teach-program-item__image img {
  max-width: 100%;
  height: auto;
}
.teach-programs-list .teach-program-item__title {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}
.teach-programs-list .teach-program-item__title a {
  color: #1f2937;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.teach-programs-list .teach-program-item__title a:hover {
  color: #FF8400;
}
.teach-programs-list .teach-program-item__content {
  width: 60%;
}
.teach-programs-list .teach-program-item__header {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.5;
}
.teach-programs-list .teach-program-item__type {
  font-size: 0.9rem;
  color: #9ca3af;
}
.teach-programs-list .teach-program-item__type a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}
.teach-programs-list .teach-program-item__type a:hover {
  color: #FF8400;
}

.views-element-container.block-views-blockreviews-block-1 {
  margin: 0;
}
@media (max-width: 480px) {
  .views-element-container.block-views-blockreviews-block-1 {
    margin-bottom: 32px;
  }
}

.block-views-blockreviews-block-1 .reviews-block__content {
  height: 100%;
}

@media (max-width: 768px) {
  .node--type-page.node--view-mode-full {
    padding: 0 15px;
  }
}

.node--type-page.node--view-mode-full .views-element-container .block-views-blockreviews-block-1 {
  margin: 0;
}

.node--type-page.node--view-mode-full .views-element-container .block-views-blockreviews-block-1 .reviews-block__content {
  height: 100%;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.pager {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin: 20px 0 40px;
}
@media (max-width: 768px) {
  .pager {
    margin-top: 0px;
  }
}

.view-display-id-block_1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
.view-display-id-block_1 .view-pager__wrapper {
  margin: 0;
  flex-direction: row;
}

@media (max-width: 480px) {
  .view-display-id-block_1 .view-pager__wrapper {
    flex-direction: column !important;
  }
  .view-display-id-block_1 .view-pager__wrapper .blog-view__pager {
    width: 100%;
  }
  .view-display-id-block_1 .view-pager__wrapper .view-footer--blog {
    justify-content: center;
    margin-top: 20px;
  }
}
.view-display-id-block_1 .view-footer {
  margin-top: 0;
}
@media (max-width: 480px) {
  .view-display-id-block_1 .view-footer {
    width: 100%;
  }
}

.view-projects.view-display-id-block_1 {
  gap: 0 !important;
}
.view-projects.view-display-id-block_1 .view-footer {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .view-projects.view-display-id-block_1 .view-footer {
    margin-bottom: 0;
  }
}

.view-projects.view-display-id-block_2 .view-footer {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  opacity: 0.6;
  margin: 0 !important;
}
@media (max-width: 768px) {
  .view-projects.view-display-id-block_2 .view-pager__wrapper {
    flex-direction: column;
  }
  .view-projects.view-display-id-block_2 .view-pager__wrapper .pager {
    width: 100%;
  }
}

.view-pager__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  margin: 40px 0;
}
.view-pager__wrapper .view-footer a {
  border-color: rgba(51, 51, 51, 0.4);
  line-height: 100%;
  font-size: 20px;
  transition: all 0.3s ease;
}
.view-pager__wrapper .view-footer a:hover {
  background: #fff;
  border-color: rgba(51, 51, 51, 0.4);
  text-decoration: none;
  color: #000;
  transform: scale(1.01);
  transition: transform 0.3s ease;
  box-shadow: none;
}
@media (max-width: 768px) {
  .view-pager__wrapper .view-footer {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .view-pager__wrapper {
    flex-direction: column;
    justify-content: center;
    margin-top: 40px !important;
  }
}

.pager__items {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  clear: both;
  text-align: center;
}

.pager__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  border-radius: 8px;
}

.pager__item a,
.pager__item span {
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
  padding: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.pager__item a:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.pager__item.is-active {
  margin-bottom: 0;
  background: transparent;
}
.pager__item.is-active a,
.pager__item.is-active span {
  background: none;
  border: none !important;
  color: #000;
  font-weight: 700;
}

.pager__item--previous a,
.pager__item--previous span,
.pager__item--next a,
.pager__item--next span,
.pager__item--first a,
.pager__item--first span,
.pager__item--last a,
.pager__item--last span {
  background: transparent;
  border: none;
}
.pager__item--previous a svg,
.pager__item--previous span svg,
.pager__item--next a svg,
.pager__item--next span svg,
.pager__item--first a svg,
.pager__item--first span svg,
.pager__item--last a svg,
.pager__item--last span svg {
  width: 52px;
  height: 52px;
  display: block;
  transition: all 0.3s ease;
}

.pager__item--previous {
  margin-bottom: 0;
}

.pager__item--previous a,
.pager__item--next a,
.pager__item--first a,
.pager__item--last a {
  transition: all 0.3s ease;
}

.pager__item--previous a:hover,
.pager__item--next a:hover,
.pager__item--first a:hover,
.pager__item--last a:hover {
  background: transparent;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.pager__item--previous.is-disabled,
.pager__item--next.is-disabled,
.pager__item--first.is-disabled,
.pager__item--last.is-disabled {
  pointer-events: none;
}
.pager__item--previous.is-disabled span,
.pager__item--next.is-disabled span,
.pager__item--first.is-disabled span,
.pager__item--last.is-disabled span {
  opacity: 0.3;
  cursor: not-allowed;
}

.pager__item--previous.is-disabled span,
.pager__item--next.is-disabled span,
.pager__item--first.is-disabled span,
.pager__item--last.is-disabled span,
.pager__item--disabled {
  background: transparent;
  border: none;
  cursor: not-allowed;
}

.pager__item.pager__item--first,
.pager__item.pager__item--last {
  display: none;
}

.pager__item--ellipsis {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

@media (max-width: 768px) {
  .pager {
    gap: 12px;
  }
  .pager__items {
    gap: 12px;
    width: 100%;
    justify-content: space-between;
  }
  .pager__item a,
  .pager__item span {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .pager__item--ellipsis {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .pager__item--previous a svg,
  .pager__item--previous span svg,
  .pager__item--next a svg,
  .pager__item--next span svg,
  .pager__item--first a svg,
  .pager__item--first span svg,
  .pager__item--last a svg,
  .pager__item--last span svg {
    width: 48px;
    height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pager__item a,
  .pager__item--previous a,
  .pager__item--next a {
    transition: none;
  }
  .pager__item a:hover,
  .pager__item--previous a:hover,
  .pager__item--next a:hover {
    transform: none;
  }
}
.node--type-page.node--view-mode-full .views-element-container.block-views-blockreviews-block-1 {
  margin-top: 0;
}
.node--type-page.node--view-mode-full .view-projects.view-display-id-block_2 .view-footer {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .node--type-page.node--view-mode-full .view-projects.view-display-id-block_2 .view-filters {
    margin-top: 0 !important;
  }
}
@media (max-width: 480px) {
  .node--type-page.node--view-mode-full .view-projects.view-display-id-block_2 .view-filters {
    margin-top: 60px !important;
  }
}

.basic--first.layout__region--first .node--type-page.node--view-mode-full .views-element-container {
  margin-top: 0;
}

.view-footer--blog {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  opacity: 0.6;
  margin: 0;
}
.view-footer--blog > a {
  border-color: rgba(51, 51, 51, 0.4);
  line-height: 100%;
  font-size: 20px;
  transition: all 0.3s ease;
}
.view-footer--blog > a:hover {
  background: #fff;
  border-color: rgba(51, 51, 51, 0.4);
  text-decoration: none;
  color: #000;
  transform: scale(1.01);
  transition: transform 0.3s ease;
  box-shadow: none;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.heading--primary {
  color: #FF8400;
}
.heading--light {
  color: #ffffff;
}
.heading--center {
  text-align: center;
}
.heading--underline {
  position: relative;
  padding-bottom: 8px;
}
.heading--underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #FF8400;
}
.heading--underline.heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.text--lead {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.text--small {
  font-size: 14px;
}
.text--primary {
  color: #FF8400;
}
.text--light {
  color: #6b7280;
}
.text--muted {
  color: #9ca3af;
}

.link {
  color: #FF8400;
  text-decoration: none;
  transition: all 0.3s ease;
}
.link:hover {
  color: rgb(178.5, 92.4, 0);
  text-decoration: underline;
  transition: all 0.3s ease;
}
.link--muted {
  color: #9ca3af;
  transition: all 0.3s ease;
}
.link--muted:hover {
  color: #1f2937;
  transition: all 0.3s ease;
}
.link--light {
  color: #ffffff;
  transition: all 0.3s ease;
}
.link--light:hover {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.link--underline {
  text-decoration: underline;
  transition: all 0.3s ease;
}
.link--underline:hover {
  text-decoration: none;
  transition: all 0.3s ease;
}

.list--inline li {
  display: inline-block;
  margin-right: 16px;
}
.list--inline li:last-child {
  margin-right: 0;
}
.list--checked li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}
.list--checked li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
}

.blockquote {
  margin: 0 0 16px;
  padding: 16px;
  font-size: 18px;
  border-left: 4px solid #FF8400;
}
.blockquote__text {
  margin-bottom: 8px;
  font-style: italic;
}
.blockquote__author {
  font-size: 16px;
  color: #9ca3af;
}
.blockquote__author::before {
  content: "—";
  margin-right: 4px;
}

.code {
  font-family: monospace;
  font-size: 14px;
  padding: 4px 8px;
  background-color: #f9fafb;
  border-radius: 8px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 24px;
  }
  .heading--h1 {
    font-size: 2rem;
  }
  .heading--h2 {
    font-size: 1.75rem;
  }
  .heading--h3 {
    font-size: 1.5rem;
  }
  .text--lead {
    font-size: 16px;
  }
  .blockquote {
    font-size: 16px;
    padding: 8px;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.info-block {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.info-block__header {
  margin-bottom: 32px;
}

.info-block__title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #1f2937;
  margin: 0;
}

.info-block__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1448px;
}

.block--block-content--type--information-block:first-of-type .info-block__item,
.layout__region--content .block--block-content--type--information-block:nth-of-type(2) .info-block__item {
  flex-direction: row-reverse !important;
  margin-bottom: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
}

.block--block-content--type--information-block:nth-of-type(2) .info-block__item,
.layout__region--content .block--block-content--type--information-block:nth-of-type(3) .info-block__item {
  flex-direction: row !important;
}

.info-block__text-section {
  flex: 1;
  max-width: 704px;
  width: 100%;
  height: 100%;
  max-height: 528px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block {
  display: flex;
  flex-direction: column;
}

.info-block__section-title {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #FF8400;
  margin: 0;
}

.info-block .long-description {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1f2937;
  margin: 0;
  line-height: 1.5;
}

.info-block h2 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-800);
  font-size: var(--font-size-40);
  line-height: 1;
  color: var(--color-primary-orange) !important;
}

.info-block h3 {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #FF8400;
  margin: 0 0 12px 0;
}

.info-block p {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.info-block p strong {
  font-weight: 700;
  color: #FF8400;
}

.info-block p span {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #1f2937;
  margin: 0;
}

.info-block .text-formatted p strong {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #FF8400;
}

.info-block__image-section {
  flex: 1;
  max-width: 704px;
  width: 100%;
}

.info-block__image-wrapper img,
.info-block__image {
  width: 100%;
  max-width: 704px;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .info-block__title {
    font-size: 1.5rem;
  }
  .info-block__item {
    flex-direction: column;
    gap: 24px;
  }
  .info-block__text-section {
    gap: 24px;
  }
  .info-block__image-section {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .info-block h2 {
    font-size: 1.5rem;
  }
  .info-block__section .long-description,
  .info-block__section p {
    font-size: 14px;
  }
  .info-block__section .text-formatted {
    font-size: 14px;
  }
  .info-block .text-formatted p {
    width: 100%;
    max-width: 704px;
  }
}
@media (max-width: 576px) {
  .info-block__title {
    font-size: 1.25rem;
  }
  .info-block__item {
    gap: 20px;
  }
  .info-block__text-section {
    gap: 20px;
  }
  .info-block__section-title,
  .info-block__section h2,
  .info-block__section h3 {
    font-size: 16px;
  }
  .info-block__section .long-description,
  .info-block__section p {
    font-size: 13px;
  }
  .info-block__section .text-formatted {
    font-size: 13px;
  }
  .info-block__image-wrapper img,
  .info-block__image {
    border-radius: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .info-block * {
    transition: none !important;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.contacts-block {
  background: #ffffff;
  max-width: 500px;
  margin: 0 auto;
}

.config_pages--type--site-settings {
  padding: 0;
  margin: 0;
}

.contacts-block__title {
  color: #FF8400;
  margin: 0 0 32px 0;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
}

.contacts-block__content {
  margin-bottom: 32px;
}

.contacts-block__section {
  margin-bottom: 24px;
}
.contacts-block__section:last-child {
  margin-bottom: 0;
}

.contacts-block__section-title {
  color: #1f2937;
  margin: 0 0 8px 0;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}

.contacts-block .contacts-block__section-title.heading-h3-primary {
  font-size: 20px;
}

.contacts-block__address, .contacts-block__section .field--name-field-institute-address .field__item,
.contacts-block__section .field--name-field-consultation-center-address .field__item,
.contacts-block__section .field--name-field-phone .field__item,
.contacts-block__phone {
  color: #1f2937;
  margin: 0 0 4px 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}
.contacts-block__address:last-child, .contacts-block__section .field--name-field-institute-address .field__item:last-child,
.contacts-block__section .field--name-field-consultation-center-address .field__item:last-child,
.contacts-block__section .field--name-field-phone .field__item:last-child,
.contacts-block__phone:last-child {
  margin-bottom: 0;
}
.contacts-block__address .field__item, .contacts-block__section .field--name-field-institute-address .field__item .field__item,
.contacts-block__section .field--name-field-consultation-center-address .field__item .field__item,
.contacts-block__section .field--name-field-phone .field__item .field__item,
.contacts-block__phone .field__item {
  margin: 0 0 4px 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}
.contacts-block__address .field__item:last-child, .contacts-block__section .field--name-field-institute-address .field__item .field__item:last-child,
.contacts-block__section .field--name-field-consultation-center-address .field__item .field__item:last-child,
.contacts-block__section .field--name-field-phone .field__item .field__item:last-child,
.contacts-block__phone .field__item:last-child {
  margin-bottom: 0;
}

.contacts-block__section .field--name-field-phone .field__item {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
}
.contacts-block__section .field--name-field-phone .field__item a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}
.contacts-block__section .field--name-field-phone .field__item a:hover, .contacts-block__section .field--name-field-phone .field__item a:focus, .contacts-block__section .field--name-field-phone .field__item a:active, .contacts-block__section .field--name-field-phone .field__item a:visited {
  color: inherit;
  text-decoration: none;
  background: none;
  outline: none;
}
.contacts-block__section .field--name-field-phone > a {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: inherit;
  text-decoration: none;
}
.contacts-block__section .field--name-field-address,
.contacts-block__section .field--name-field-adress-center {
  max-width: 260px;
}
.contacts-block__section .field--name-field-address .field__item,
.contacts-block__section .field--name-field-adress-center .field__item {
  max-width: 260px;
}

.contacts-block__social {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.contacts-block__social-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 0;
}
.contacts-block__social-link:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.contacts-block__social-link a {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contacts-block__social-link a:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
.contacts-block__social-icon, .contacts-block__social-link img,
.contacts-block__social-link .field--name-field-media-image img,
.contacts-block__social-link .media--type-image img {
  width: 88px;
  height: 88px;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.contacts-block__social .media {
  line-height: 0;
}
.contacts-block__social .field--type-image,
.contacts-block__social .field--name-field-media-image {
  line-height: 0;
  margin: 0;
}

body.path-frontpage .layout__region--first {
  justify-content: space-between;
}
body.path-frontpage .field--name-field-social-network {
  gap: 16px;
}
body.path-frontpage .field--name-field-social-network .field__item {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}
body.path-frontpage .field--name-field-social-network .field__item:hover {
  opacity: 1;
}

.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .layout__region--first {
  gap: 0;
}
.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .layout__region--first .field--name-field-address,
.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .layout__region--first .field--name-field-adress-center,
.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .layout__region--first .field--name-field-phone {
  max-width: none;
}
.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .layout__region--second > div {
  height: 100%;
}
.layout.layout--twocol-section.layout--twocol-section--50-50.contacts .layout__region--second > div iframe {
  height: 100%;
}
.field--name-field-social-network {
  display: flex;
  gap: 16px;
}
.field--name-field-social-network .field__item {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}
.field--name-field-social-network .field__item:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .field--name-field-social-network {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .contacts-block__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .contacts-block__content {
    margin-bottom: 24px;
  }
  .contacts-block__section {
    margin-bottom: 20px;
  }
  .contacts-block__section-title {
    font-size: 16px;
  }
  .contacts-block__address, .contacts-block__section .field--name-field-institute-address .field__item,
  .contacts-block__section .field--name-field-consultation-center-address .field__item,
  .contacts-block__section .field--name-field-phone .field__item,
  .contacts-block__phone {
    font-size: 14px;
  }
  .contacts-block__social {
    gap: 24px;
  }
  .contacts-block__social-icon, .contacts-block__social-link img,
  .contacts-block__social-link .field--name-field-media-image img,
  .contacts-block__social-link .media--type-image img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 576px) {
  .contacts-block__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .contacts-block__content {
    margin-bottom: 8px;
  }
  .contacts-block__section {
    margin-bottom: 16px;
  }
  .contacts-block__section-title {
    font-size: 0.9375rem;
  }
  .contacts-block__address, .contacts-block__section .field--name-field-institute-address .field__item,
  .contacts-block__section .field--name-field-consultation-center-address .field__item,
  .contacts-block__section .field--name-field-phone .field__item,
  .contacts-block__phone {
    font-size: 0.8125rem;
  }
  .contacts-block__social {
    gap: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contacts-block * {
    transition: none !important;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.telegram-channel-wrapper {
  margin: 0;
  height: 100%;
}

.telegram-channel {
  background: #E8FAFD;
  border-radius: 12px;
  padding: 40px;
  max-width: 704px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.block h2.telegram-channel__title {
  color: #FF8400;
  margin: 0 0 24px 0 !important;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  text-transform: none !important;
}

.telegram-channel__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.telegram-channel__links .field {
  margin: 0;
}
.telegram-channel__links .field__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.telegram-channel__links .field__item {
  margin: 0;
}

.telegram-channel__link, .telegram-channel__links .field__item a, .telegram-channel__links a {
  color: #1f2937;
  text-decoration: underline;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  transition: all 0.3s ease;
  display: block;
}
.telegram-channel__link:hover, .telegram-channel__links a:hover {
  color: #FF8400;
  transition: all 0.3s ease;
}
.telegram-channel__link:focus, .telegram-channel__links a:focus {
  outline: 2px solid #FF8400;
  outline-offset: 2px;
}

.field--name-field-link-tg {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}
.field--name-field-link-tg .field__item {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.field--name-field-link > a {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 768px) {
  .telegram-channel-wrapper {
    margin: 0;
    width: 100%;
    max-width: 704px;
  }
  .telegram-channel {
    padding: 24px;
  }
  .block h2.telegram-channel__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
    padding-top: 0 !important;
    padding-bottom: 24px !important;
    text-transform: uppercase !important;
  }
  .telegram-channel__links {
    gap: 10px;
  }
  .telegram-channel__links .field__items {
    gap: 10px;
  }
  .telegram-channel__links .layout__region--content {
    margin: 0 !important;
  }
  .telegram-channel__link, .telegram-channel__links a, .telegram-channel__links .field__item a {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .telegram-channel-wrapper {
    margin: 0;
  }
  .telegram-channel {
    padding: 24px;
  }
  .block h2.telegram-channel__title {
    font-size: 24px;
    line-height: 28px;
  }
  .telegram-channel__links {
    gap: 8px;
  }
  .telegram-channel__links .field__items {
    gap: 8px;
  }
  .telegram-channel__link, .telegram-channel__links a, .telegram-channel__links .field__item a {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .telegram-channel * {
    transition: none !important;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.reviews-platforms-wrapper {
  height: 100%;
}

.reviews-platforms {
  background: #E8FAFD;
  border-radius: 16px;
  padding: 40px;
  max-width: 704px;
  max-height: 508px;
  height: 100%;
  margin: 0 auto;
  border: 1px solid #D4F3FA;
}

h2.reviews-platforms__title.heading-h2-primary {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 32px !important;
  line-height: 38px;
  color: #FF8400;
  margin: 0 0 24px 0 !important;
  text-align: center;
  text-transform: none !important;
}

.reviews-platforms__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-platforms__list .field {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews-platforms__list .field__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.reviews-platforms__list .field__item {
  margin: 0;
}

.reviews-platforms__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.reviews-platforms__item.paragraph,
.reviews-platforms__item .paragraph {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0px;
}

.reviews-platforms__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-platforms__rating-text {
  display: flex;
  flex-direction: row;
  gap: 44px;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 245px;
}

.reviews-platforms__star {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.reviews-platforms__star svg {
  width: 48px;
  height: 48px;
}

.reviews-platforms__score {
  font-family: Inter;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000000;
  margin: 0;
}

.reviews-platforms__count {
  font-family: Inter;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #000000;
  margin: 0;
}

.reviews-platforms__logo-img {
  width: 178px;
  height: 88px;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-platforms__item .field--name-field-rating {
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
}
.reviews-platforms__item .field--name-field-number-of-ratings {
  margin: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}
.reviews-platforms__item .field--name-field-score,
.reviews-platforms__item .field--name-field-count,
.reviews-platforms__item .field--name-field-logo,
.reviews-platforms__item .field--name-field-platform-logo {
  margin: 0;
}
.reviews-platforms__item > .field {
  display: contents;
}

.reviews-platforms__score .field__item,
.reviews-platforms__count .field__item {
  margin: 0;
  display: inline;
}
.reviews-platforms__score.field--name-field-rating, .reviews-platforms__score.field--name-field-number-of-ratings,
.reviews-platforms__count.field--name-field-rating,
.reviews-platforms__count.field--name-field-number-of-ratings {
  margin: 0;
}
.reviews-platforms__score.field--name-field-rating .field__item, .reviews-platforms__score.field--name-field-number-of-ratings .field__item,
.reviews-platforms__count.field--name-field-rating .field__item,
.reviews-platforms__count.field--name-field-number-of-ratings .field__item {
  margin: 0;
  display: inline;
}

.reviews-platforms__logo .field,
.reviews-platforms__logo .field__item {
  margin: 0;
  line-height: 0;
}
.reviews-platforms__logo .field--name-field-logo {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.reviews-platforms__logo .field--name-field-logo:hover {
  cursor: pointer;
  opacity: 1;
  transform: scale(1.05);
  transition: all 0.3s ease;
}
.reviews-platforms__logo img {
  width: 176px;
  height: 88px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews-platforms__logo .media,
.reviews-platforms__logo .field--name-field-media-image {
  margin: 0;
  line-height: 0;
}

.reviews-platforms__rating-text .field--name-field-rating,
.reviews-platforms__rating-text .field--name-field-number-of-ratings {
  margin: 0;
  display: inline;
}
.reviews-platforms__rating-text .field--name-field-rating .field__item,
.reviews-platforms__rating-text .field--name-field-number-of-ratings .field__item {
  margin: 0;
  display: inline;
}

.reviews-platforms__logo .field--name-field-logo {
  margin: 0;
  line-height: 0;
}
.reviews-platforms__logo .field--name-field-logo .field__item {
  margin: 0;
  line-height: 0;
}

@media (max-width: 768px) {
  .reviews-platforms {
    padding: 24px;
    max-width: 100%;
    max-height: none;
  }
  .reviews-platforms__list {
    gap: 12px;
  }
  .reviews-platforms__list .field,
  .reviews-platforms__list .field__items {
    gap: 24px;
  }
  .reviews-platforms__item {
    padding: 8px 0;
  }
  .reviews-platforms__rating-text {
    max-width: 245px;
    width: 100%;
  }
  .reviews-platforms__logo {
    width: 140px;
    height: 70px;
  }
  .reviews-platforms__logo img {
    width: 140px;
    height: 70px;
  }
}
@media (max-width: 576px) {
  .reviews-platforms {
    padding: 24px;
    display: flex;
    gap: 24px;
    flex-direction: column;
  }
  h2.reviews-platforms__title.heading-h2-primary {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: left;
  }
  .reviews-platforms__item {
    display: flex;
    gap: 8px;
    flex-direction: column;
  }
  .reviews-platforms__item .field--name-field-rating {
    font-size: 24px;
  }
  .reviews-platforms__item .field--name-field-number-of-ratings {
    font-size: 20px;
  }
  .reviews-platforms__score {
    font-size: 20px;
  }
  .reviews-platforms__count {
    font-size: 18px;
    line-height: 22px;
  }
  .reviews-platforms__star {
    width: 32px;
    height: 32px;
  }
  .reviews-platforms__star svg {
    width: 40px;
    height: 40px;
  }
  .reviews-platforms__rating {
    width: 100%;
  }
  .reviews-platforms__rating-text {
    gap: 20px;
  }
  .reviews-platforms__logo {
    width: 100%;
    height: 64px;
  }
  .reviews-platforms__logo img {
    width: 100%;
    height: 64px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-platforms * {
    transition: none !important;
  }
}
.review-card .read-full-review-link:hover {
  cursor: pointer;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.view-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.view-footer a {
  border-color: rgba(51, 51, 51, 0.4);
  line-height: 100%;
  font-size: 20px;
  transition: all 0.3s ease;
}
.view-footer a:hover {
  background: #fff;
  border-color: rgba(51, 51, 51, 0.4);
  text-decoration: none;
  color: #000;
  transform: scale(1.01);
  transition: transform 0.3s ease;
  box-shadow: none;
}

.views-element-container.contextual-region {
  height: 100%;
}
.views-element-container .contextual-region {
  height: 100%;
}

.view-reviews .view-footer a {
  color: #000;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 14px 24px;
  transition: transform 0.3s ease;
}
.view-reviews .view-footer a:hover {
  border-color: rgba(0, 0, 0, 0.4) !important;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.view-reviews.view-display-id-block_2 {
  margin: 130px 0 130px;
}
.view-reviews.view-display-id-block_2 .view-content.reviews-view__content {
  flex-direction: row;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .view-reviews.view-display-id-block_2 .view-content.reviews-view__content {
    flex-direction: column;
  }
}
.view-reviews.view-display-id-block_2 .view-pager__wrapper {
  margin: 0;
}
@media screen and (max-width: 576px) {
  .view-reviews.view-display-id-block_2 .view-pager__wrapper .view-footer a {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .view-reviews.view-display-id-block_2 .view-pager__wrapper .view-footer {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .view-reviews.view-display-id-block_2 {
    margin: 0;
  }
}

.view-reviews.view-display-id-block_3 .review-card {
  max-width: none;
}
.view-reviews.view-display-id-block_3 .reviews-view__pager .pager__items {
  gap: 16px;
}
.view-reviews.view-display-id-block_3 .pager__item.is-active {
  background: transparent;
  opacity: 1;
}
.view-reviews.view-display-id-block_3 .view-footer {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  opacity: 0.6;
}

.reviews-view__container {
  display: flex;
  justify-content: space-between;
}
.reviews-view__container .view-footer {
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .reviews-view__pager {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 32px;
  }
}

.reviews-view__pager .pager {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 !important;
}

.reviews-view__pager .pager__items {
  gap: 32px;
}

.reviews-view__pager .pager__item {
  background: transparent;
}

.reviews-view__pager .pager__item.is-active {
  font-family: Inter, sans-serif;
  font-weight: 400;
  opacity: 0.6;
  font-size: 20px;
  color: #000;
  line-height: 28px;
}

.view-content.reviews-view__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.reviews-block-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
  z-index: 1;
}

.blog-view__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: stretch;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .blog-view__content {
    gap: 30px;
    margin: 0;
  }
}

.view-blog.view-display-id-block_1 .blog-view__content {
  margin-top: 0;
}
.view-blog.view-display-id-block_1 .view-pager__wrapper {
  flex-direction: row-reverse;
}

.view-training-programs.view-display-id-block_1 .view-filters {
  margin-bottom: 0;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  width: 100%;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-filters {
    gap: 50px;
  }
}
@media screen and (max-width: 480px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-filters {
    width: 100%;
  }
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset {
  padding: 0;
  border: none;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset > legend {
  display: none;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper {
  position: relative;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios {
  display: flex;
  gap: 8px;
  max-width: 1250px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item {
  margin: 0;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item input[type=radio] {
  display: none;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item input[type=radio]:checked + .label-wrapper {
  background: #FFE4CC;
  border-color: #FF8400;
  font-weight: 500;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item .label-wrapper {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #333;
  background: white;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  min-height: 28px;
  white-space: nowrap;
  margin: 0;
  transition: all 0.3s ease;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item .label-wrapper .label-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item .label-wrapper label {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item .label-wrapper label:hover {
  transform: none;
  background: transparent;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item .label-wrapper:hover {
  transform: scale(1.01);
  transition: all 0.3s ease;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-format-value::before {
  content: "Формат:";
  color: #000000;
  opacity: 0.4;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-right: 24px;
  position: absolute;
  top: 5px;
  left: 195px;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-format-value::before {
    top: -40px !important;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-format-value::before {
    top: -40px !important;
    left: 0;
  }
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-status-target-id::before {
  content: "Статус:";
  color: #000000;
  opacity: 0.4;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-right: 24px;
  position: absolute;
  top: 5px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-status-target-id::before {
    top: -40px !important;
    left: 0;
  }
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-program-type-target-id::before {
  content: "Тип программы:";
  color: #000000;
  opacity: 0.4;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-right: 24px;
  position: absolute;
  top: 5px;
  left: -160px;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item.form-item-field-program-type-target-id::before {
    top: -40px !important;
    left: 0;
  }
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item:not(.form-item-field-format-value):nth-of-type(1) label::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #FF8400;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios .form-item:not(.form-item-field-format-value):nth-of-type(1) .label-dot {
  display: none;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset .fieldset-wrapper .form-radios {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline fieldset {
    width: 100%;
  }
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by {
  margin-right: auto;
  position: relative;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by label {
  display: none;
}
.view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by::before {
  content: "Сортировка";
  color: #000000;
  opacity: 0.8;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin-right: 24px;
  position: absolute;
  bottom: 2px;
  right: -145px;
}
@media screen and (max-width: 1285px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by::before {
    right: 0;
    left: -125px;
    bottom: 5px;
    content: "Сортировка:";
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by::before {
    top: -40px !important;
    left: 0;
  }
}
@media screen and (max-width: 1285px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by {
    margin-right: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline .form-item-sort-by {
    width: 100%;
  }
}
@media screen and (max-width: 1285px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline {
    align-items: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .view-training-programs.view-display-id-block_1 .view-filters .form--inline {
    width: 100%;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-filters {
    margin-top: 0px;
  }
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item {
  display: flex;
  margin-bottom: 32px;
  max-height: 350px;
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__header {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__header {
    -webkit-line-clamp: none;
  }
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__image {
  width: 100%;
  height: auto;
  max-width: 500px;
  min-width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__image img {
    max-height: 350px;
    min-height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__image {
    max-width: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #e8fafd;
  padding: 40px;
  border-radius: 0 12px 12px 0;
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content .training-program-item__title {
  margin-bottom: 16px;
  margin-top: -9px;
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content .training-program-item__title a {
  text-decoration: underline;
  font-size: 24px !important;
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content .training-program-item__title a:hover {
  color: #FF8400;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content .training-program-item__title {
    margin-top: 16px;
  }
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content .training-program-item__type {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-gray-dark);
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #333;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content .training-program-item__type {
    white-space: normal;
    text-align: center;
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__content {
    padding: 24px;
    border-radius: 0 0 12px 12px;
  }
}
.view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item .training-program-item__tags-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .view-training-programs.view-display-id-block_1 .view-content .training-program-item {
    flex-direction: column;
    max-height: unset;
  }
}
.view-training-programs.view-display-id-block_1 .view-content h2 {
  margin-top: 50px !important;
}
.view-training-programs.view-display-id-block_1 .view-content h2:first-of-type {
  margin-top: 0px !important;
  margin-bottom: 50px !important;
}

.blog-view__pager {
  display: flex;
  justify-content: center;
}
.blog-view__pager .pager {
  margin: 0;
}

.view--blog > .view-pager__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0 0 0;
  flex-direction: row-reverse;
}

.view-footer--blog {
  display: flex;
  justify-content: flex-end;
}
.view-footer--blog .view-footer__text {
  font-family: Inter, sans-serif;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
}

.item-list .title {
  font-weight: bold;
}
.item-list ul {
  margin: 0 0 0.75em 0;
  padding: 0;
}
.item-list li {
  margin: 0 0 0.25em 1.5em;
  padding: 0;
}
[dir=rtl] .item-list li {
  margin: 0 1.5em 0.25em 0;
}
.item-list--comma-list {
  display: inline;
}
.item-list--comma-list .item-list__comma-list, .item-list--comma-list__comma-list li {
  margin: 0;
}
[dir=rtl] .item-list--comma-list .item-list__comma-list, [dir=rtl] .item-list--comma-list__comma-list li {
  margin: 0;
}

.more-link {
  display: block;
  text-align: right;
}
[dir=rtl] .more-link {
  text-align: left;
}

.view-graduates.view-display-id-block_1 .view-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.view-teachers .view-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.block-yandex-map {
  margin: 60px 0;
  padding: 0;
}

.map-container {
  width: 100%;
  margin: 120px 0 0;
}
.map-container iframe {
  display: block;
  width: 100%;
}

@media (max-width: 768px) {
  .map-container {
    margin: 24px 0 0;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.blog-article-teaser {
  display: flex;
  height: 100%;
  max-height: 320px;
  padding: 30px;
  background: #fff;
  transition: all 0.3s ease;
}
.blog-article-teaser:hover {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .blog-article-teaser {
    flex-direction: column;
    max-height: none;
  }
}

h2.blog-article-teaser__title {
  line-height: 30%;
  margin-top: -15px !important;
}
h2.blog-article-teaser__title span {
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-700);
  font-size: 24px !important;
  line-height: 100% !important;
  color: var(--color-primary-orange) !important;
  text-decoration: underline;
  margin: 0 0 var(--spacing-32) 0 !important;
}
h2.blog-article-teaser__title span:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  h2.blog-article-teaser__title span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h2.blog-article-teaser__title {
    margin-top: -5px !important;
    margin-bottom: 0 !important;
  }
}

.blog-article-teaser__auto-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .blog-article-teaser__auto-summary {
    display: none;
  }
}

.blog-article-teaser__image {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.blog-article-teaser__image .field--name-field-ba-image {
  height: 100%;
  max-height: 320px;
}
.blog-article-teaser__image .field--name-field-ba-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-height: 320px;
  display: block;
}
@media screen and (max-width: 768px) {
  .blog-article-teaser__image {
    max-width: unset;
    max-height: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}

.blog-article-teaser__image-full {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  height: 100%;
  max-height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .blog-article-teaser__image-full {
    max-width: unset;
    max-height: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}

.node--type-blog-article.node--view-mode-full h1.blog-article-full__title .field--name-title {
  text-transform: uppercase;
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-800);
  font-size: var(--font-size-40) !important;
  line-height: 1 !important;
}
@media screen and (max-width: 768px) {
  .node--type-blog-article.node--view-mode-full h1.blog-article-full__title .field--name-title {
    font-size: 24px !important;
  }
}
.node--type-blog-article.node--view-mode-full .node__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.node--type-blog-article.node--view-mode-full ul {
  list-style: disc !important;
}
.node--type-blog-article.node--view-mode-full ul li {
  margin-left: 30px;
}
.node--type-blog-article.node--view-mode-full .blog-article-teaser__meta {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .node--type-blog-article.node--view-mode-full .blog-article-teaser__meta {
    text-align: right;
  }
}

.blog-article-teaser__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #e8fafd;
  padding: 40px;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 768px) {
  .blog-article-teaser__content {
    padding: 24px;
    border-radius: 0 0 12px 12px;
  }
}

.blog-article-teaser__content-bottom {
  display: flex;
  flex-direction: row-reverse;
  margin-top: auto;
  justify-content: space-between;
  align-items: flex-end;
}
.blog-article-teaser__content-bottom .blog-article-teaser__footer:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .blog-article-teaser__content-bottom {
    margin-top: 20px;
  }
}

.blog-article-teaser__meta {
  color: var(--color-gray-dark);
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.messages {
  padding: 15px 20px 15px 35px;
  word-wrap: break-word;
  border: 1px solid;
  border-width: 1px 1px 1px 0;
  border-radius: 2px;
  background: no-repeat 10px 17px;
  overflow-wrap: break-word;
}
[dir=rtl] .messages {
  padding-right: 35px;
  padding-left: 20px;
  text-align: right;
  border-width: 1px 0 1px 1px;
  background-position: right 10px top 17px;
}
.messages + .messages {
  margin-top: 1.538em;
}
.messages__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.messages__item + .messages__item {
  margin-top: 0.769em;
}
.messages--status {
  color: #325e1c;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;
  background-color: #f3faef;
  background-image: url(../../images/icons/check.svg);
  box-shadow: -8px 0 0 #77b259;
}
[dir=rtl] .messages--status {
  margin-left: 0;
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  box-shadow: 8px 0 0 #77b259;
}
.messages--warning {
  color: #734c00;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;
  background-color: #fdf8ed;
  background-image: url(../../images/icons/warning.svg);
  box-shadow: -8px 0 0 #e09600;
}
[dir=rtl] .messages--warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  box-shadow: 8px 0 0 #e09600;
}
.messages--error {
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  background-color: #fcf4f2;
  background-image: url(../../images/icons/error.svg);
  box-shadow: -8px 0 0 #e62600;
}
[dir=rtl] .messages--error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  box-shadow: 8px 0 0 #e62600;
}
.messages--error p.error {
  color: #a51b00;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.progress__track {
  border-color: #b3b3b3;
  border-radius: 10em;
  background-color: #f2f1eb;
  background-image: linear-gradient(#e7e7df, #f0f0f0);
  box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.16);
}

.progress__bar {
  height: 16px;
  margin-top: -1px;
  margin-left: -1px;
  padding: 0 1px;
  transition: width 0.5s ease-out;
  -webkit-animation: animate-stripes 3s linear infinite;
  border: 1px #07629a solid;
  border-radius: 10em;
  background: #057ec9;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), linear-gradient(to right bottom, #0094f0 0%, #0094f0 25%, #007ecc 25%, #007ecc 50%, #0094f0 50%, #0094f0 75%, #0094f0 100%);
  background-size: 40px 40px;
}
[dir=rtl] .progress__bar {
  margin-right: -1px;
  margin-left: 0;
  animation-direction: reverse;
}

@media screen and (prefers-reduced-motion: reduce) {
  .progress__bar {
    transition: none;
    -webkit-animation: none;
  }
}
/**
 * Progress bar animations.
 */
@keyframes animate-stripes {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, -80px 0;
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.icon-help {
  padding: 1px 0 1px 20px;
  background: url(../../images/icons/help.png) 0 50% no-repeat;
}
[dir=rtl] .icon-help {
  padding: 1px 20px 1px 0;
  background-position: 100% 50%;
}

.feed-icon {
  display: block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  text-indent: -9999px;
  background: url(../../images/icons/feed.svg) no-repeat;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.tag {
  color: #333;
  background: white;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  white-space: nowrap;
  margin: 0;
  transition: all 0.3s ease;
}
.tag__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tag__text {
  white-space: nowrap;
  font-family: Inter, sans-serif !important;
  font-weight: 400;
  font-size: 20px !important;
  line-height: 24px !important;
}
.tag {
  /* Варианты тегов */
}
.tag--green {
  background: transparent;
  border: 1px solid #000;
  color: #333;
}
.tag--green .tag__dot {
  background: #4CAF50;
}
.tag--blue {
  background: transparent;
  border: 1px solid #000;
  color: #333;
}
.tag--blue .tag__dot {
  background: #2196F3;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
/* Visual styling for the Password strength indicator */
.password-strength__meter {
  margin-top: 0.5em;
  background-color: #ebeae4;
}

.password-strength__indicator {
  transition: width 0.5s ease-out;
  background-color: #77b259;
}
.password-strength__indicator.is-weak {
  background-color: #e62600;
}
.password-strength__indicator.is-fair {
  background-color: #e09600;
}
.password-strength__indicator.is-good {
  background-color: #0074bd;
}
.password-strength__indicator.is-strong {
  background-color: #77b259;
}

.password-confirm,
.password-field,
.password-strength,
.password-confirm-match,
.password-confirm-message {
  width: 55%;
}

.password-suggestions {
  max-width: 34.7em;
  margin: 0.7em 0;
  padding: 0.2em 0.5em;
  border: 1px solid #b4b4b4;
}
.password-suggestions ul {
  margin-bottom: 0;
}

.confirm-parent,
.password-parent {
  clear: left;
  overflow: hidden;
  max-width: 33em;
  margin: 0;
}
[dir=rtl] .confirm-parent,
[dir=rtl] .password-parent {
  clear: right;
}

/* Styling for the status indicator of the passwords match test. */
.password-confirm .ok {
  color: #325e1c;
  font-weight: bold;
}
.password-confirm .error {
  color: #a51b00;
  font-weight: bold;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

body div.tabledrag-changed-warning {
  margin-bottom: 0.5em;
}

tr.selected td {
  background: #ffc;
}

td.checkbox,
th.checkbox {
  text-align: center;
}
[dir=rtl] td.checkbox,
[dir=rtl] th.checkbox {
  text-align: center;
}

th.is-active img {
  display: inline;
}

td.is-active {
  background-color: #ddd;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
/* File icons. */
.file {
  display: inline-block;
  min-height: 16px;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: left center;
}
[dir=rtl] .file {
  padding-right: 20px;
  padding-left: inherit;
  background-position: right center;
}
.file--general, .file--application-octet-stream {
  background-image: url(../../images/icons/application-octet-stream.png);
}
.file--package-x-generic {
  background-image: url(../../images/icons/package-x-generic.png);
}
.file--x-office-spreadsheet {
  background-image: url(../../images/icons/x-office-spreadsheet.png);
}
.file--x-office-document {
  background-image: url(../../images/icons/x-office-document.png);
}
.file--x-office-presentation {
  background-image: url(../../images/icons/x-office-presentation.png);
}
.file--text-x-script {
  background-image: url(../../images/icons/text-x-script.png);
}
.file--text-html {
  background-image: url(../../images/icons/text-html.png);
}
.file--text-plain {
  background-image: url(../../images/icons/text-plain.png);
}
.file--image {
  background-image: url(../../images/icons/image.png);
}
.file--audio {
  background-image: url(../../images/icons/audio.png);
}
.file--video {
  background-image: url(../../images/icons/video.png);
}
.file--application-pdf {
  background-image: url(../../images/icons/application-pdf.png);
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.js .dropbutton-widget {
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}
.js .dropbutton-widget:hover {
  border-color: #b8b8b8;
}

.dropbutton .dropbutton-action > * {
  padding: 0.1em 0.5em;
  white-space: nowrap;
}
.dropbutton .secondary-action {
  border-top: 1px solid #e8e8e8;
}
.dropbutton-multiple .dropbutton {
  border-right: 1px solid #e8e8e8;
}
[dir=rtl] .dropbutton-multiple .dropbutton {
  border-right: 0 none;
  border-left: 1px solid #e8e8e8;
}
.dropbutton-multiple .dropbutton .dropbutton-action > * {
  margin-right: 0.25em;
}
[dir=rtl] .dropbutton-multiple .dropbutton .dropbutton-action > * {
  margin-right: 0;
  margin-left: 0.25em;
}

.image-preview {
  float: left;
  padding: 0 10px 10px 0;
}
[dir=rtl] .image-preview {
  float: right;
  padding: 0 0 10px 10px;
}

.image-widget-data {
  float: left;
}
[dir=rtl] .image-widget-data {
  float: right;
}
.image-widget-data .text-field {
  width: auto;
}

.indented {
  margin-left: 25px;
}
[dir=rtl] .indented {
  margin-right: 25px;
  margin-left: 0;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
article.media--view-mode-banner {
  height: 100%;
}

article.media--type-izobrazhenie.media--view-mode-banner {
  margin: 0;
}

.start-banner {
  justify-content: flex-end;
}

.start-banner__banner {
  height: 100%;
}
@media screen and (max-width: 480px) {
  .start-banner__banner {
    display: none;
  }
}

.start-banner__banner.mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .start-banner__banner.mobile {
    display: block;
    height: 100%;
  }
}

.start-banner__pagination-dot {
  background: none;
  padding: 0;
}

/* ===== ОСНОВНЫЕ СТИЛИ БАННЕРА ===== */
.start-banner,
.start-banner *,
.start-banner *::before,
.start-banner *::after {
  box-sizing: border-box;
}

.start-banner {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-16);
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto 64px;
  height: 766px;
}

.start-banner__banner {
  height: 480px;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.start-banner__banner .field--name-field-image {
  height: 100%;
}

.start-banner__banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.start-banner__info {
  background: var(--color-primary-orange);
  padding: var(--spacing-40);
  color: var(--color-white);
  flex: 1;
}

.start-banner__title {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-32);
  color: var(--color-white);
  text-align: left;
  margin: 0 0 var(--spacing-24) 0;
  line-height: 100%;
  text-transform: uppercase;
}

.start-banner__items-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: var(--spacing-32);
  overflow: hidden;
}

.start-banner__items-wrapper .field__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1286px) {
  .start-banner__items-wrapper .field__items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .start-banner__items-wrapper .field__items {
    display: flex;
    flex-wrap: nowrap;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}
.start-banner__items-wrapper .field__items > .field__item {
  width: 100%;
  min-width: 100%;
}

@media screen and (max-width: 480px) {
  .start-banner__items-wrapper .field__items .start-banner__info-item {
    padding: 0;
  }
}

/* ===== ИНФОРМАЦИОННЫЕ БЛОКИ ===== */
.start-banner__info-item {
  display: flex;
  gap: var(--spacing-12);
  padding: 0;
  background: transparent;
  border-radius: var(--radius-12);
}

.start-banner__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Убираем все возможные обертки */
.start-banner__info-icon > *,
.start-banner__info-icon .field,
.start-banner__info-icon .field__item,
.start-banner__info-icon .field--name-field-media-image {
  display: contents;
}

.start-banner__icon,
.start-banner__info-icon img,
.start-banner__info-icon svg {
  width: 48px !important;
  height: 48px !important;
  filter: brightness(0) invert(1);
  display: block !important;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: none;
}

.start-banner__info-text {
  flex: 1;
}

.start-banner__info-text .specialist-name {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-20);
  line-height: var(--line-height-normal);
  color: var(--color-white);
  margin-bottom: var(--spacing-4);
  width: 100%;
}

.start-banner__info-text .highlighted-text {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-20);
  color: var(--color-white);
  line-height: var(--line-height-relaxed);
}

/* Drupal field styles */
.start-banner__info-text .field--name-field-title,
.start-banner__info-text .field--name-field-description {
  margin: 0;
}

.start-banner__info-text .field--name-field-title {
  font-size: 18px;
}

.start-banner__info-text .field--name-field-description {
  font-size: 17px;
}

.start-banner__info-text .field--name-field-title .field__item {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-20);
  line-height: var(--line-height-normal);
  color: var(--color-white);
  margin-bottom: var(--spacing-4);
}

.start-banner__info-text .field--name-field-description .field__item {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-20);
  color: var(--color-white);
  line-height: var(--line-height-relaxed);
}

/* ===== ПАГИНАЦИЯ (ДЛЯ МОБИЛЬНЫХ) ===== */
.start-banner__pagination {
  display: none;
  justify-content: center;
  gap: var(--spacing-8);
  margin-top: var(--spacing-16);
}

.start-banner__pagination-dot {
  width: var(--spacing-12);
  height: var(--spacing-12);
  border-radius: 50%;
  border: 1px solid white;
  /* background: rgba(255, 255, 255, 0.3); */
  cursor: pointer;
  transition: var(--transition-normal);
}

.start-banner__pagination-dot.active {
  background: var(--color-white);
  transform: scale(1.2);
}

.start-banner__pagination-dot:hover {
  /* background: rgba(255, 255, 255, 0.6); */
}

/* ===== АДАПТИВ ДЛЯ ПЛАНШЕТОВ ===== */
@media (max-width: 1024px) {
  .start-banner {
    height: auto;
  }
  .start-banner__banner {
    height: 360px;
  }
  .start-banner__info {
    padding: var(--spacing-32);
  }
  .start-banner__title {
    font-size: var(--font-size-28);
  }
  .start-banner__items-wrapper {
    gap: var(--spacing-24);
  }
}
/* ===== АДАПТИВ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
  .start-banner {
    height: auto;
    border-radius: 0;
  }
  .start-banner__banner {
    height: 200px;
  }
  .start-banner__info {
    padding: var(--spacing-24);
  }
  .start-banner__title {
    font-size: var(--font-size-24);
    margin-bottom: var(--spacing-24);
  }
  .start-banner__items-wrapper {
    gap: var(--spacing-12);
  }
  .start-banner__info-item {
    gap: var(--spacing-8);
    padding: var(--spacing-8);
  }
  .start-banner__info-text .specialist-name {
    font-size: var(--font-size-18);
    line-height: var(--line-height-normal);
  }
  .start-banner__info-text .highlighted-text {
    font-size: var(--font-size-18);
  }
  .start-banner__info-text .field--name-field-title .field__item {
    font-size: var(--font-size-18);
  }
  .start-banner__info-text .field--name-field-description .field__item {
    font-size: var(--font-size-18);
  }
  .start-banner__pagination {
    display: flex;
  }
}
@media (max-width: 480px) {
  .start-banner {
    height: auto;
  }
  .start-banner__banner {
    height: 150px;
  }
  .start-banner__info {
    padding: var(--spacing-16);
  }
  .start-banner__title {
    font-size: var(--font-size-20);
    margin-bottom: var(--spacing-16);
  }
  .start-banner__items-wrapper {
    gap: var(--spacing-8);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .start-banner__info-item {
    flex-direction: row;
    text-align: left;
    padding: var(--spacing-8);
    gap: var(--spacing-8);
    scroll-snap-align: start;
    min-width: 100%;
    width: 100%;
  }
  .start-banner__info-text .specialist-name {
    font-size: var(--font-size-18);
    line-height: var(--line-height-normal);
    font-weight: 400;
  }
  .start-banner__info-text .highlighted-text {
    font-size: var(--font-size-16);
  }
  .start-banner__info-text .field--name-field-title .field__item {
    font-size: var(--font-size-16);
  }
  .start-banner__info-text .field--name-field-description .field__item {
    font-size: var(--font-size-16);
  }
}
/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.teacher-page__header {
  margin-bottom: 60px;
}

.teacher-page__intro {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 20px;
}
.teacher-page__intro .field--name-field-teacher-description {
  max-width: 1100px;
}
@media screen and (max-width: 768px) {
  .teacher-page__intro {
    justify-content: center;
  }
}

.teacher-page__fields {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 20px;
}
.teacher-page__fields .field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}
.teacher-page__fields .field--name-field-subjects-taught {
  flex-direction: column;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader img {
  max-width: 100px;
  max-height: 100px;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.view-video-reviews {
  width: 100%;
}
.view-video-reviews .view-content {
  display: flex;
  gap: 32px;
}
.view-video-reviews .view-content .views-row {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .view-video-reviews .view-content .views-row {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .view-video-reviews .view-content {
    flex-direction: column;
    gap: 24px;
  }
}

.node--type-video-review.node--view-mode-full .field--name-body p,
.node--type-video-review.node--view-mode-teaser .field--name-body p {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  max-height: 396px;
}

@media (max-width: 768px) {
  .node--type-video-review.node--view-mode-teaser {
    margin: 0px !important;
  }
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.ui-dialog.ui-widget-content {
  padding: 24px;
}
.ui-dialog.ui-widget-content .ui-dialog-titlebar {
  background: transparent;
  padding: 0;
  margin: 0;
}
.ui-dialog.ui-widget-content .ui-dialog-titlebar .ui-dialog-title {
  display: none;
}
.ui-dialog.ui-widget-content .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close {
  width: 20px;
  height: 20px;
  margin-top: -30px;
  margin-right: -40px;
  border: none;
}
.ui-dialog.ui-widget-content .ui-dialog-titlebar .ui-button.ui-dialog-titlebar-close .ui-button-icon {
  background: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 1.318l-10 10M11 11.318l-10-10' stroke='%23ff8400' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat 50%;
}
.ui-dialog.ui-widget-content #drupal-modal {
  padding: 0;
  min-height: 108px !important;
}
.ui-dialog.ui-widget-content #drupal-modal .search-input {
  flex-direction: column;
  gap: 25px;
  padding: 0;
  margin: 0;
}
.ui-dialog.ui-widget-content #drupal-modal .search-input .search-input__btn {
  width: 100%;
  display: block;
  margin-top: auto;
  padding: 5px;
  background-color: var(--color-primary-orange);
  border-radius: 8px;
  border-color: var(--color-primary-orange);
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
}
.ui-dialog.ui-widget-content #drupal-modal .search-input .search-input__btn .search-input__icon {
  display: none;
}
.ui-dialog.ui-widget-content #drupal-modal .search-input .search-input__btn .search-input__btn-text {
  display: block;
  color: #fff;
  text-align: center;
}
.ui-dialog.ui-widget-content #drupal-modal .form-item-phone input.form-text, .ui-dialog.ui-widget-content #drupal-modal .form-item-phone input.form-tel,
.ui-dialog.ui-widget-content #drupal-modal .form-item-name input.form-text,
.ui-dialog.ui-widget-content #drupal-modal .form-item-name input.form-tel {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  padding-left: 10px;
  background: var(--gin-bg-app);
  border-radius: 4px;
}
.ui-dialog.ui-widget-content #drupal-modal .form-item-phone input.form-text:focus, .ui-dialog.ui-widget-content #drupal-modal .form-item-phone input.form-tel:focus,
.ui-dialog.ui-widget-content #drupal-modal .form-item-name input.form-text:focus,
.ui-dialog.ui-widget-content #drupal-modal .form-item-name input.form-tel:focus {
  border: 1px solid #ff8400;
}
.ui-dialog.ui-widget-content .ui-dialog-buttonpane {
  padding: 0 !important;
  border: 0 !important;
  margin: 0;
  background: transparent !important;
}
.ui-dialog.ui-widget-content .ui-dialog-buttonpane .ui-dialog-buttonset {
  width: 100%;
  margin-top: 10px;
}
.ui-dialog.ui-widget-content .ui-dialog-buttonpane .button {
  width: 100%;
  display: block;
  margin-top: auto;
  padding: 5px;
  background-color: var(--color-primary-orange);
  border-radius: 8px;
  border-color: var(--color-primary-orange) !important;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transition: all 0.3s ease;
  box-shadow: none !important;
  color: #fff;
  font-size: 20px !important;
}
.ui-dialog.ui-widget-content .ui-dialog-buttonpane .button:hover {
  background-color: var(--color-primary-orange);
  border-color: var(--color-primary-orange) !important;
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.ui-dialog.ui-widget-content.ui-dialog {
  width: 440px !important;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.ajax-progress-throbber {
  background-image: url(/themes/custom/soznanie_d11/images/preloader.gif) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  background-color: transparent !important;
  width: 60px !important;
  height: 60px !important;
}
.ajax-progress-throbber .throbber {
  display: none !important;
  background-image: url(/themes/custom/soznanie_d11/images/preloader.gif) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.ajax-progress-throbber .message {
  display: none;
}

.ajax-progress-fullscreen {
  background-image: url(/themes/custom/soznanie_d11/images/preloader.gif) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  background-color: transparent !important;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 480px) {
  .ajax-progress-fullscreen {
    margin-left: -20px;
  }
}

.header__top .ajax-progress-throbber {
  position: fixed;
  z-index: 1000;
  top: 48.5%;
  -o-object-position: center;
     object-position: center;
  width: 60px !important;
  height: 60px !important;
  padding: 4px;
  opacity: 0.9;
  border-radius: 7px;
  background-color: transparent;
  background-image: url(/themes/custom/soznanie_d11/images/preloader.gif);
  background-repeat: no-repeat;
  background-position: center center;
}
.header__top .ajax-progress-throbber .throbber,
.header__top .ajax-progress-throbber .message {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__top .ajax-progress-throbber {
    left: 39%;
  }
}

.ajax-progress.ajax-progress-throbber {
  display: none;
}

.header__top .ajax-progress-throbber,
.footer .ajax-progress-throbber {
  display: none;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.item-list .title {
  font-weight: bold;
}
.item-list ul {
  margin: 0 0 0.75em 0;
  padding: 0;
}
.item-list li {
  margin: 0 0 0.25em 1.5em; /* LTR */
  padding: 0;
}
[dir=rtl] .item-list li {
  margin: 0 1.5em 0.25em 0;
}

.item-list--comma-list {
  display: inline;
}
.item-list--comma-list .item-list__comma-list,
.item-list--comma-list .item-list__comma-list li, [dir=rtl] .item-list--comma-list .item-list__comma-list, [dir=rtl] .item-list--comma-list .item-list__comma-list li {
  margin: 0;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
button.link {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  font-size: 1em;
}

label button.link {
  font-weight: bold;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0; /* LTR */
}
[dir=rtl] ul.inline,
[dir=rtl] ul.links.inline {
  padding-right: 0;
  padding-left: 15px;
}

ul.inline li {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
}

ul.links a.is-active {
  color: #000;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.more-link {
  display: block;
  text-align: right; /* LTR */
}
[dir=rtl] .more-link {
  text-align: left;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
div.tabs {
  margin: 1em 0;
}

ul.tabs {
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
}

.tabs > li {
  display: inline-block;
  margin-right: 0.3em; /* LTR */
}
[dir=rtl] .tabs > li {
  margin-right: 0;
  margin-left: 0.3em;
}

.tabs a {
  display: block;
  padding: 0.2em 1em;
  text-decoration: none;
}
.tabs a.is-active {
  background-color: #eee;
}
.tabs a:focus, .tabs a:hover {
  background-color: #f5f5f5;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.config_pages.config_pages--site-settings--contacts-with-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content .field__label {
  line-height: 90%;
}
.config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content .config_pages__phone, .config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content .config_pages__contact-btn {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #000 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content .config_pages__phone:hover, .config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content .config_pages__contact-btn:hover {
  color: var(--color-primary-orange) !important;
}
.config_pages.config_pages--site-settings--contacts-with-link .config_pages__contact-content .config_pages__contact-btn {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.config_pages.config_pages--site-settings--contacts-with-link .field--name-field-email a {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: #000 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.config_pages.config_pages--site-settings--contacts-with-link .field--name-field-email a:hover {
  color: var(--color-primary-orange) !important;
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.page-editable-teaser {
  display: flex;
  height: 100%;
  max-height: 320px;
  background: #fff;
  transition: all 0.3s ease;
}
.page-editable-teaser:hover {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-editable-teaser {
    flex-direction: column;
    max-height: none;
  }
}

h2.page-editable-teaser__title {
  line-height: 30%;
  margin-top: -15px !important;
}
h2.page-editable-teaser__title span {
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-700);
  font-size: 24px !important;
  line-height: 100% !important;
  color: var(--color-primary-orange) !important;
  text-decoration: underline;
  margin: 0 0 var(--spacing-32) 0 !important;
}
h2.page-editable-teaser__title span:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  h2.page-editable-teaser__title span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h2.page-editable-teaser__title {
    margin-top: -5px !important;
    margin-bottom: 0 !important;
  }
}

.page-editable-teaser__auto-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .page-editable-teaser__auto-summary {
    display: none;
  }
}

.page-editable-teaser__image {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.page-editable-teaser__image .field--name-field-ba-image {
  height: 100%;
  max-height: 320px;
}
.page-editable-teaser__image .field--name-field-ba-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-height: 320px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-editable-teaser__image {
    max-width: unset;
    max-height: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}

.page-editable-teaser__image-full {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  height: 100%;
  max-height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-editable-teaser__image-full {
    max-width: unset;
    max-height: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}

.node--type-page-editable.node--view-mode-full h1.page-editable-full__title .field--name-title {
  text-transform: uppercase;
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-800);
  font-size: var(--font-size-40) !important;
  line-height: 1 !important;
}
@media screen and (max-width: 768px) {
  .node--type-page-editable.node--view-mode-full h1.page-editable-full__title .field--name-title {
    font-size: 24px !important;
  }
}
.node--type-page-editable.node--view-mode-full .node__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.node--type-page-editable.node--view-mode-full ul {
  list-style: disc !important;
}
.node--type-page-editable.node--view-mode-full ul li {
  margin-left: 30px;
}
.node--type-page-editable.node--view-mode-full .page-editable-teaser__meta {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .node--type-page-editable.node--view-mode-full .page-editable-teaser__meta {
    text-align: right;
  }
}

.page-editable-teaser__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: #e8fafd;
  padding: 40px;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 768px) {
  .page-editable-teaser__content {
    padding: 24px;
    border-radius: 0 0 12px 12px;
  }
}

.page-editable-teaser__content-bottom {
  display: flex;
  flex-direction: row-reverse;
  margin-top: auto;
  justify-content: space-between;
  align-items: flex-end;
}
.page-editable-teaser__content-bottom .page-editable-teaser__footer:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-editable-teaser__content-bottom {
    margin-top: 20px;
  }
}

.page-editable-teaser__meta {
  color: var(--color-gray-dark);
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.teach-program-teaser {
  display: flex;
  height: 100%;
  max-height: 320px;
  background: #fff;
  transition: all 0.3s ease;
}
.teach-program-teaser:hover {
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .teach-program-teaser {
    flex-direction: column;
    max-height: none;
  }
}

h2.teach-program-teaser__title {
  line-height: 30%;
  margin-top: -15px !important;
}
h2.teach-program-teaser__title span {
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-700);
  font-size: 24px !important;
  line-height: 100% !important;
  color: var(--color-primary-orange) !important;
  text-decoration: underline;
  margin: 0 0 var(--spacing-32) 0 !important;
}
h2.teach-program-teaser__title span:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  h2.teach-program-teaser__title span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h2.teach-program-teaser__title {
    margin-top: -5px !important;
    margin-bottom: 0 !important;
  }
}

.teach-program-teaser__auto-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
}
@media screen and (max-width: 768px) {
  .teach-program-teaser__auto-summary {
    display: none;
  }
}

.teach-program-teaser__image {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}
.teach-program-teaser__image .field--name-field-ba-image {
  height: 100%;
  max-height: 320px;
}
.teach-program-teaser__image .field--name-field-ba-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  max-height: 320px;
  display: block;
}
@media screen and (max-width: 768px) {
  .teach-program-teaser__image {
    max-width: unset;
    max-height: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}

.teach-program-teaser__image-full {
  width: 100%;
  max-width: 500px;
  min-width: 500px;
  height: 100%;
  max-height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .teach-program-teaser__image-full {
    max-width: unset;
    max-height: unset;
    min-width: unset;
    border-radius: 12px 12px 0 0;
  }
}

.node--type-teach-program.node--view-mode-full h1.page-editable-full__title .field--name-title {
  text-transform: uppercase;
  font-family: var(--font-family-primary) !important;
  font-weight: var(--font-weight-800);
  font-size: var(--font-size-40) !important;
  line-height: 1 !important;
}
@media screen and (max-width: 768px) {
  .node--type-teach-program.node--view-mode-full h1.page-editable-full__title .field--name-title {
    font-size: 24px !important;
  }
}
.node--type-teach-program.node--view-mode-full .node__content {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.node--type-teach-program.node--view-mode-full ul {
  list-style: disc !important;
}
.node--type-teach-program.node--view-mode-full ul li {
  margin-left: 30px;
}
.node--type-teach-program.node--view-mode-full .teach-program-teaser__meta {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .node--type-teach-program.node--view-mode-full .teach-program-teaser__meta {
    text-align: right;
  }
}

.teach-program-teaser__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  background: #e8fafd;
  padding: 40px;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 768px) {
  .teach-program-teaser__content {
    padding: 24px;
    border-radius: 0 0 12px 12px;
  }
}

.teach-program-teaser__content-bottom {
  display: flex;
  flex-direction: row-reverse;
  margin-top: auto;
  justify-content: space-between;
  align-items: flex-end;
}
.teach-program-teaser__content-bottom .teach-program-teaser__footer:hover {
  transform: scale(1.01);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .teach-program-teaser__content-bottom {
    margin-top: 20px;
  }
}

.teach-program-teaser__meta {
  color: var(--color-gray-dark);
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
body.path-frontpage {
  background-color: var(--color-white);
}
@media (max-width: 992px) {
  body.path-frontpage .layout-content {
    padding-inline: 32px;
  }
}
@media (max-width: 768px) {
  body.path-frontpage .layout-container {
    padding: 0;
  }
  body.path-frontpage .layout-main {
    padding-top: 24px;
  }
  body.path-frontpage .layout-content {
    padding-inline: 0px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  body.path-frontpage .layout--onecol:nth-of-type(1) {
    padding-inline: 0px !important;
  }
  body.path-frontpage .views-element-container,
  body.path-frontpage .block {
    margin: 0;
    width: 100%;
    max-width: 704px;
    background: transparent;
  }
  body.path-frontpage .start-banner {
    overflow: hidden;
    box-shadow: var(--shadow-xs);
  }
  body.path-frontpage .training-programs-block,
  body.path-frontpage .block-views-blockteach-programs-block-1,
  body.path-frontpage .event-card-wrapper,
  body.path-frontpage .block--block-content--type--information-block,
  body.path-frontpage .block--block-content--type--banner-our-partner {
    padding: 32px 16px;
    border-radius: var(--radius-16);
    background: var(--color-white);
    box-shadow: var(--shadow-xs);
  }
  body.path-frontpage .reviews-block {
    background: var(--color-white);
  }
  body.path-frontpage .services-block-wrapper {
    background: var(--color-surface-blue);
  }
  body.path-frontpage .block-views-blockteach-programs-block-1 .block__content,
  body.path-frontpage .training-programs-block .block__content,
  body.path-frontpage .reviews-block .reviews-block__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  body.path-frontpage .training-programs-group,
  body.path-frontpage .teach-programs-list .item-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  body.path-frontpage .training-programs-group__title,
  body.path-frontpage .teach-programs-group-title,
  body.path-frontpage .block__title,
  body.path-frontpage .reviews-block__title {
    font-size: var(--font-size-24);
    line-height: var(--line-height-relaxed);
  }
}
@media (max-width: 576px) {
  body.path-frontpage .layout-content {
    padding-inline: 0px;
    gap: 24px;
  }
  body.path-frontpage .training-programs-group__title,
  body.path-frontpage .teach-programs-group-title,
  body.path-frontpage .block__title,
  body.path-frontpage .reviews-block__title {
    font-size: var(--font-size-20);
  }
  body.path-frontpage .training-program-item,
  body.path-frontpage .teach-program-item {
    flex-direction: column;
    gap: 24px;
  }
  body.path-frontpage .training-program-item__image,
  body.path-frontpage .teach-program-item__image {
    max-width: none;
    width: 100%;
  }
  body.path-frontpage .training-program-item__content,
  body.path-frontpage .teach-program-item__content {
    width: 100%;
  }
  body.path-frontpage .reviews-block .reviews-block__content {
    gap: 16px;
  }
  body.path-frontpage .training-programs-block,
  body.path-frontpage .block-views-blockteach-programs-block-1,
  body.path-frontpage .event-card-wrapper,
  body.path-frontpage .block--block-content--type--information-block,
  body.path-frontpage .block--block-content--type--banner-our-partner {
    padding: 24px 12px;
  }
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.page-404__layout-content {
  display: flex;
  margin: 100px;
  flex-direction: column;
  align-items: center;
}
.page-404__layout-content .page-404__title {
  font-size: 200px;
}
@media screen and (max-width: 768px) {
  .page-404__layout-content .page-404__title {
    font-size: 100px;
  }
}
.page-404__layout-content .page-404__wrapper {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .page-404__layout-content .page-404__wrapper {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}
.page-404__layout-content .page-404__text {
  margin-bottom: 0;
}
.page-404__layout-content .page-404__link {
  text-decoration: underline;
}
.page-404__layout-content .page-404__link:hover {
  text-decoration: none;
  color: #FF8400;
}
@media screen and (max-width: 768px) {
  .page-404__layout-content {
    margin: 50px;
  }
}

/**
 * Main theme stylesheet for soznanie_d11
 * Using 7-1 pattern for SCSS organization
 */
.page-403__layout-content {
  display: flex;
  margin: 100px;
  flex-direction: column;
  align-items: center;
}
.page-403__layout-content .page-403__title {
  font-size: 200px;
}
@media screen and (max-width: 768px) {
  .page-403__layout-content .page-403__title {
    font-size: 100px;
  }
}
.page-403__layout-content .page-403__wrapper {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .page-403__layout-content .page-403__wrapper {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
}
.page-403__layout-content .page-403__text {
  margin-bottom: 0;
}
.page-403__layout-content .page-403__link {
  text-decoration: underline;
}
.page-403__layout-content .page-403__link:hover {
  text-decoration: none;
  color: #FF8400;
}
@media screen and (max-width: 768px) {
  .page-403__layout-content {
    margin: 50px;
  }
}

.path-search .region-content {
  margin-bottom: 60px;
}
.path-search .search-help-link {
  display: none;
}
.path-search .search-advanced {
  display: none;
}
.path-search .search-input {
  margin-bottom: 20px;
  margin-top: 40px;
}
.path-search .search-results {
  list-style: none;
}
.path-search .search-results li {
  margin-left: 0;
}
.path-search .search-result__snippet-info {
  margin-bottom: 20px;
}
.path-search .search-result__snippet-info .search-result__snippet {
  margin: 0;
}
.path-search .search-result__snippet-info .search-result__info {
  display: none;
}
@media screen and (max-width: 768px) {
  .path-search .layout-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*# sourceMappingURL=maps/style.css.map */
