@media (max-width: 1000px) {
  .projects_section {
    padding: 18px 0 0;
  }

  .projects_section .section_title {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
  }

  .projects_tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: end;
  }

  .project_tab_item {
    display: flex;
    width: 100%;
  }

  .project_tab {
    width: 100%;
    min-height: 52px;
    padding: 10px 4px 8px;
    border-radius: 18px 18px 0 0;
    font-size: 0.82rem;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .project_tab.active {
    color: #f6e7cf;
  }

  .projects_panel {
    border-radius: 0 0px 22px 22px;
  }

  .projects_panel_inner {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .project_layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .project_info_column,
  .project_preview_column {
    display: contents;
  }

  .project_tech_block {
    order: 1;
    align-self: flex-start;
    text-align: left;
    margin-bottom: 0;
  }

  .project_tech_title {
    font-size: 1rem;
  }

  .project_tech_icons {
    gap: 14px;
    justify-content: flex-start;
  }

  .project_tech_icons img {
    width: 28px;
    height: 28px;
  }

  .project_tech_text {
    font-size: 0.92rem;
  }

  .project_info_item:first-child {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .project_info_item:first-child .project_marker,
  .project_info_item:first-child .project_info_text h3,
  .project_info_item:first-child .project_info_text p {
    display: none;
  }

  .project_info_item:first-child .project_info_headline_row {
    display: block;
    margin: 0;
  }

  .project_duration {
    font-size: 0.95rem;
    color: #f6e7cf;
  }

  .project_preview_image {
    order: 3;
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    display: block;
    margin: 0;
  }

  .project_info_item:nth-child(2),
  .project_info_item:nth-child(3) {
    order: 4;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .project_info_item:nth-child(2) .project_marker,
  .project_info_item:nth-child(3) .project_marker {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .project_info_item:nth-child(2) .project_info_text,
  .project_info_item:nth-child(3) .project_info_text {
    max-width: 100%;
  }

  .project_info_item:nth-child(2) .project_info_text h3,
  .project_info_item:nth-child(3) .project_info_text h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    color: #89bcd9;
    line-height: 1.2;
  }

  .project_info_item:nth-child(2) .project_info_text p,
  .project_info_item:nth-child(3) .project_info_text p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #f6e7cf;
  }

  .project_actions {
    order: 5;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: nowrap;
  }

  .project_link_btn {
    flex: 1;
    min-width: 0;
    height: 44px;
    font-size: 0.92rem;
  }
}

@media (max-width: 700px) {
  .project_tab {
    font-size: 0.88rem;
    padding: 10px 2px 8px;
  }

  .projects_panel_inner {
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .project_link_btn {
    font-size: 0.88rem;
  }
}
.project_mobile_name {
  display: none;
}

@media (max-width: 1000px) {
  .projects_tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin: 0;
    padding: 0;
    align-items: end;
  }

  .project_tab_item {
    display: flex;
    min-width: 0;
  }

  .project_tab {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 10px 4px 8px;
    border-radius: 18px 18px 0 0;
    font-size: 1rem;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .project_layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .project_info_column,
  .project_preview_column {
    display: contents;
  }

  .project_mobile_name {
    display: block;
    order: 1;
    margin: 0;
    color: #89bcd9;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
  }

  .project_tech_block {
    order: 2;
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    margin: 0;
    flex-wrap: nowrap;
  }

  .project_tech_title {
    margin: 0;
    font-size: 16px;
    flex-shrink: 0;
  }

  .project_tech_title::after {
    content: ":";
  }

  .project_tech_text {
    display: inline;
    margin: 0;
    color: #f6e7cf;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
  }

  .project_info_item:first-of-type {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .project_info_item:first-of-type .project_marker,
  .project_info_item:first-of-type .project_info_text h3,
  .project_info_item:first-of-type .project_info_text p {
    display: none;
  }

  .project_info_item:first-of-type .project_info_headline_row {
    display: block;
    margin: 0;
  }

  .project_duration {
    display: block;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #f6e7cf;
  }

  .project_preview_image {
    order: 4;
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    display: block;
    margin: 0;
  }

  .project_info_item:nth-of-type(2) {
    order: 5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .project_info_item:nth-of-type(3) {
    order: 6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .project_info_item:nth-of-type(2) .project_marker,
  .project_info_item:nth-of-type(3) .project_marker {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  .project_info_item:nth-of-type(2) .project_info_text h3,
  .project_info_item:nth-of-type(3) .project_info_text h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    color: #89bcd9;
    line-height: 1.2;
  }

  .project_info_item:nth-of-type(2) .project_info_text p,
  .project_info_item:nth-of-type(3) .project_info_text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: #f6e7cf;
  }

  .project_actions {
    order: 7;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: nowrap;
  }
}

.project_tab_mobile {
  display: none;
}

.project_tab_desktop {
  display: inline;
}

@media (max-width: 1000px) {
  .project_tab_desktop {
    display: none;
  }

  .project_tab_mobile {
    display: inline;
  }
}

@media (max-width: 480px) {
  .project_actions {
    gap: 12px;
  }

  .project_link_btn,
  .btn_cta.project_link_btn,
  .btn_standard.project_link_btn {
    min-width: 130px;
    width: 130px;
    height: 44px;
    font-size: 18px;
    padding: 0 16px;
  }
  .references_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .need_team {
    max-width: 280px;
    line-height: 1.05;
    word-break: normal;
    overflow-wrap: normal;
  }

  .references_title_light {
    max-width: 280px;
    margin-top: 10px;
    line-height: 1.35;
  }


}
