/* ========================================
   PAGE4.CSS - NEWS PAGE STYLES
   ======================================== */

/* ========================================
   FONT FACE DECLARATIONS
   ======================================== */
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../fonts/ProximaNova-Bold.woff") format("woff");
  font-weight: auto;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNova-Extrabld";
  src: url("../fonts/ProximaNova-Extrabld.woff") format("woff");
  font-weight: auto;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ProximaNova-Regular";
  src: url("../fonts/ProximaNova-Regular.woff") format("woff");
  font-weight: auto;
  font-style: normal;
  font-display: swap;
}
.participants-title{
  font-family: "ProximaNova-Bold";
}
/* Убираю дублирующиеся стили */

/* Добавляю стили для горизонтального расположения картинки и текста */
.participants-desc-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.participants-desc-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.participants-subtract {
  width: 25px;
  height: auto;
  margin-right: 10px;
}

.participants-desc {
  color: white;
  font-family: "ProximaNova-Semibold";
  font-size: 1.5rem;
  margin: 0;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
  .participants-desc-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .participants-subtract {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .participants-desc {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .participants-desc-content {
    gap: 6px;
  }
  
  .participants-subtract {
    width: 20px;
  }
  
  .participants-desc {
    font-size: 1rem;
  }
}
@font-face {
  font-family: "ProximaNova-Semibold";
  src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
  font-weight: auto;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   CSS VARIABLES (CUSTOM PROPERTIES)
   ======================================== */
:root {
  --page3-bg: #0e0e0e;
  --page3-title: #ffffff;
  --page3-desc: #ffffff;
  --page3-accent2: #d83b3b;
  --bg-color: #0e0e0e;
  --text-color-one: #6e6e6e;
  --accent-color-one: #bc3131;
}

/* ========================================
   BASE STYLES
   ======================================== */
body,
.page3-main {
  background: var(--page3-bg);
  color: var(--page3-title);
  min-width: 320px;
}

/* ========================================
   BACKGROUND DECORATION
   ======================================== */
.page3-bg-decor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.15;
}

.page3-bg-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   MAIN CONTENT LAYOUT
   ======================================== */
.page3-main {
  position: relative;
  z-index: 5;
  padding-top: clamp(40px, 8vw, 80px);
  min-height: 100vh;
}

/* ========================================
   PAGE TITLE SECTION
   ======================================== */
.page3-title-section {
  margin-bottom: 3rem;
}

.page3-title {
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--page3-title);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.page3-desc-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.page3-desc-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page3-desc {
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.2;
  color: var(--page3-desc);
}

.page3-subtract {
  width: clamp(20px, 3vw, 25px);
  height: auto;
}

.text-block-page3-title {
  text-align: left;
}

span {
  color: var(--page3-accent2);
}

/* ========================================
   HEADER & NAVIGATION STYLES
   ======================================== */
.img-Rectangle424 {
  width: 100%;
  z-index: -1;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.header {
  font-family: "ProximaNova-Bold", sans-serif;
  margin-bottom: 50px;
  margin-top: 30px;
}



a {
  color: var(--text-color-one);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover,
a.active {
  color: var(--page3-accent2);
}

a.active {
  border-bottom: 4px solid var(--accent-color-one);
  border-radius: 5%;
  padding-bottom: 3px;
}

/* ========================================
   NEWS BLOCKS SECTION
   ======================================== */
.news-blocks-section {
  margin: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-blocks-section .container-fluid {
  max-width: 1600px;
  margin: 0 auto;
}

.news-block {
  border-radius: 45px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

/* ========================================
   NEWS BLOCK LAYOUT & GRID
   ======================================== */
.rows {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.Rectangle49 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   NEWS BLOCK CONTENT STYLES
   ======================================== */
.block1-title {
  text-align: center;
  z-index: 50;
  position: absolute;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  color: #fff;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 7px 20px;
}

/* ========================================
   NEWS BUTTONS STYLES
   ======================================== */
.news-btn {
  position: absolute;
  background: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 50;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: #2a2a2a;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.news-btn:hover {
  background: #f0f0f0;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.news-btn-two {
  cursor: pointer;
  border-radius: 38px;
  width: 421px;
  position: absolute;
  bottom: 45px;
  left: 5%;
  border: none;
  height: 121px;
  background: #2c2c2c;
  text-align: center;
  font-weight: 800;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}

.news-btn-two:hover {
  background: #3a3a3a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN - LARGE SCREENS
   ======================================== */
@media (min-width: 1025px) {
  .page3-desc-wrap {
    display: flex;
    justify-content: flex-start;
  }

  .text-block-page3-title {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: 24%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 12.5%;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1504px;
  }
}

@media (min-width: 1440px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: 11.5%;
  }

  .text-block-page3-title {}
}

/* ========================================
   RESPONSIVE DESIGN - MEDIUM SCREENS
   ======================================== */
@media (max-width: 1200px) {



  .page3-desc {
    font-size: 25px;
  }

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

  .page3-info-name {}

  .page3-participant-card {
    padding: 0.4rem;
  }

  .page3-info-card {
    padding: 1.5rem;
  }

  .page3-subtract {
    margin-right: 8px;
    width: 22px;
  }

  .text-block-page3-title {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .page3-desc {
    font-size: 22px;
  }

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

  .page3-info-card {
    align-items: stretch;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .page3-info-content {
    align-items: flex-start;
    text-align: left;
  }

  .page3-participants-grid .row {
    gap: 1rem;
  }

  .page3-participant-card {
    padding: 0.3rem;
  }

  .page3-social-icon {
    height: 24px;
    width: 28px;
  }

  .page3-social-link {
    height: 45px;
    width: 45px;
  }

  .page3-social-links {
    gap: 0.8rem;
  }

  .page3-subtract {
    margin-right: 7px;
    width: 20px;
  }

  .text-block-page3-title {
    margin-left: 12px;
    text-align: center;
  }

  .participant-info-img {
    display: block;
    margin: 0 auto 1.2rem auto;
    max-width: 350px;
    width: 80vw;
  }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL SCREENS
   ======================================== */
@media (max-width: 768px) {

  .page3-desc {
    font-size: 18px;
  }

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

  .page3-info-card {
    padding: 1rem;
  }

  .page3-info-description p {
    font-size: clamp(0.8rem, 1.3vw, 1rem);
  }

  .page3-info-name {
    font-size: clamp(4rem, 2.5vw, 2.5rem);
  }

  .page3-info-title {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
  }

  .page3-main {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .page3-participant-info {
    margin-top: 2rem;
  }

  .page3-participants-grid {
    margin-bottom: 2rem;
  }

  .page3-social-icon {
    height: 20px;
    width: 24px;
  }

  .page3-social-link {
    height: 40px;
    width: 40px;
  }

  .page3-social-links {
    gap: 0.6rem;
    justify-content: center;
  }

  .page3-subtract {
    margin-right: 6px;
    width: 18px;
  }

  .text-block-page3-title {
    margin-left: 0px;
  }

  .text-block-page3-title {
    font-size: 0.9em;
    margin-left: 10px;
    padding: 0 5px;
    text-align: center;
  }

  .page3-info-card {
    align-items: stretch;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .page3-info-content {
    align-items: center;
    max-width: none;
    text-align: center;
  }

  .participant-info-img {
    display: block;
    margin: 0 auto 1.2rem auto;
    max-width: 350px;
    width: 80vw;
  }

  .page3-title {
    color: var(--page3-title);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}


@media (max-width: 576px) {
  .page3-desc {
    font-size: 16px;
  }

  .page3-desc-wrap {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }

  .page3-info-card {
    gap: 0.7rem;
    padding: 0.7rem;
  }

  .page3-info-description p {
    font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  }

  .page3-info-name {
    font-size: clamp(1rem, 2vw, 1.8rem);
  }

  .page3-info-title {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  }

  .page3-main {
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .page3-participant-info {
    margin-top: 1.5rem;
  }

  .page3-participants-grid {
    margin-bottom: 1.5rem;
  }

  .page3-title-section {
    margin-bottom: 1.5rem;
  }

  .page3-social-icon {
    height: 17px;
    width: 20px;
  }

  .page3-social-link {
    height: 35px;
    width: 35px;
  }

  .page3-social-links {
    gap: 0.5rem;
  }

  .page3-subtract {
    margin-right: 5px;
    width: 16px;
  }

  .text-block-page3-title {
    font-size: 0.85em;
    padding: 0 3px;
    text-align: center;
  }

  .page3-info-card {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .page3-info-content {
    align-items: center;
    text-align: center;
  }

  .page3-info-name {
    font-size: 1.3rem;
  }

  .page3-info-title {
    font-size: 0.8rem;
  }

  .page3-info-description p {
    font-size: 0.8rem;
  }

  .page3-social-title {
    font-size: 0.8rem;
  }

  .page3-social-icon {
    height: 28px;
    width: 28px;
  }

  .participant-info-img {
    border-radius: 14px;
    margin: 0 auto 0.7rem auto;
    max-width: 98vw;
    min-width: 0;
    width: 90vw;
  }

  .page3-participants-grid .col-12,
  .page3-participants-grid .col-sm-6,
  .page3-participants-grid .col-md-4,
  .page3-participants-grid .col-lg-3,
  .page3-participants-grid .col-xl-2,
  .page3-participants-grid .col-xl-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 4px;
    padding-right: 4px;
  }

  .page3-participant-card {
    min-width: 0;
    padding: 0.3rem;
  }

  .page3-avatar-img {
    border-radius: 10px;
  }

  .page3-participant-name {
    font-size: 0.8rem;
    padding: 0.2rem 0.1rem;
  }

  .page3-subtract {
    margin-right: 3px;
    width: 12px;
  }

  .header {
    margin-bottom: 30px;
    margin-top: 20px;
  }

  .text-block-page3-title {
    font-size: 0.75em;
    padding: 0 2px;
    text-align: center;
  }

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

@media (max-width: 430px) {
  .page3-desc {
    font-size: 14px;
  }

  .page3-info-card {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .page3-info-content {
    align-items: center;
    text-align: center;
  }

  .page3-info-name {
    font-size: 2.5rem;
  }

  .page3-info-title {
    font-size: 0.85rem;
  }

  .page3-info-description p {
    font-size: 0.85rem;
  }

  .page3-social-title {
    font-size: 0.85rem;
  }

  .page3-social-icon {
    height: 30px;
    width: 30px;
  }

  .page3-main {
    max-width: 100vw;
    padding: 0 6px;
  }

  .page3-title {
    font-size: 1.2rem;
  }

  .participant-info-img {
    border-radius: 16px;
    margin: 0 auto 0.8rem auto;
    max-width: 96vw;
    min-width: 0;
    width: 88vw;
  }

  .page3-participants-grid .col-12,
  .page3-participants-grid .col-sm-6,
  .page3-participants-grid .col-md-4,
  .page3-participants-grid .col-lg-3,
  .page3-participants-grid .col-xl-2,
  .page3-participants-grid .col-xl-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .page3-participant-card {
    min-width: 0;
    padding: 0.35rem;
  }

  .page3-avatar-img {
    border-radius: 11px;
  }

  .page3-participant-name {
    font-size: 0.85rem;
    padding: 0.25rem 0.15rem;
  }

  .page3-subtract {
    margin-right: 4px;
    width: 14px;
  }

  .text-block-page3-title {
    font-size: 0.8em;
    padding: 0 2px;
    text-align: center;
  }

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



  .header {
    margin-bottom: 25px;
    margin-top: 15px;
  }
}

@media (max-width: 425px) {}

@media (max-width: 375px) {
  .page3-desc {
    font-size: 10px;
  }

  .page3-info-card {
    gap: 0.4rem;
    padding: 0.4rem;
  }

  .page3-info-name {
    font-size: 1.1rem;
  }

  .page3-info-title {
    font-size: 0.7rem;
  }

  .page3-info-description p {
    font-size: 0.7rem;
  }

  .page3-social-title {
    font-size: 0.7rem;
  }

  .page3-social-icon {
    height: 22px;
    width: 22px;
  }

  .page3-main {
    padding: 0 2px;
  }

  .page3-title {
    font-size: 0.95rem;
  }

  .participant-info-img {
    border-radius: 10px;
    max-width: 99vw;
    width: 96vw;
  }

  .page3-participants-grid .col-12,
  .page3-participants-grid .col-sm-6,
  .page3-participants-grid .col-md-4,
  .page3-participants-grid .col-lg-3,
  .page3-participants-grid .col-xl-2,
  .page3-participants-grid .col-xl-3 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 2px;
    padding-right: 2px;
  }

  .page3-participant-card {
    padding: 0.1rem;
  }

  .page3-participant-name {
    font-size: 0.7rem;
    padding: 0.1rem 0.05rem;
  }

  .page3-subtract {
    margin-right: 2px;
    width: 10px;
  }

  .text-block-page3-title {
    font-size: 0.7em;
    padding: 0 1px;
    text-align: center;
  }

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





  .header {
    margin-bottom: 25px;
    margin-top: 15px;
  }
}

@media (max-width: 425px) {
  .page3-main {
    padding: 0 4px;
    max-width: 100vw;
  }

  .page3-title {
    font-size: 1.1rem;
  }

  .page3-desc {
    font-size: 0.7rem;
  }

  .page3-desc-wrap {
    gap: 0.5rem;
  }
}

@media (max-width: 375px) {
  .page3-main {
    padding: 0 2px;
  }

  .page3-title {
    font-size: 0.95rem;
  }

  .page3-desc {
    font-size: 0.6rem;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1481px;
  }
}

/* ========================================
   NEWS BLOCKS RESPONSIVE SIZES
   ======================================== */

/* Large screens (1200px+) - Default sizes */
@media (min-width: 1200px) {
  .news-block-1 {
    width: 604px;
    height: 604px;
  }

  .news-block-2 {
    width: 818px;
    height: 604px;
  }

  .news-block-3 {
    width: 947px;
    height: 604px;
  }

  .news-block-4 {
    width: 475px;
    height: 604px;
  }

  /* Reduced gaps between blocks */
  .news-blocks-section .row.g-3 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

/* Desktop - Large screen (1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  .news-block-1 {
    width: 550px;
    height: 550px;
  }

  .text-block-page3-title {
    margin-left: 40px;
  }

  .news-block-2 {
    width: 750px;
    height: 550px;
  }

  .news-block-3 {
    width: 870px;
    height: 550px;
  }

  .news-block-4 {
    width: 430px;
    height: 550px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 380px;
    height: 110px;
    font-size: 38px;
  }

  .block1-title {
    font-size: 17px;
    bottom: 70px;
  }

  .news-btn {
    font-size: 16px;
    padding: 10px 20px;
    bottom: 25px;
  }
}

/* Laptop - Notebook (1280px) */
@media (max-width: 1280px) {
  .news-block-1 {
    width: 480px;
    height: 480px;
  }

  .news-block-2 {
    width: 650px;
    height: 480px;
  }

  .news-block-3 {
    width: 750px;
    height: 480px;
  }

  .news-block-4 {
    width: 380px;
    height: 480px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 320px;
    height: 100px;
    font-size: 32px;
    bottom: 40px;
  }

  .block1-title {
    font-size: 15px;
    bottom: 65px;
  }

  .news-btn {
    font-size: 14px;
    padding: 8px 18px;
    bottom: 22px;
  }

  .rows {
    gap: 40px;
  }
}

/* Tablet landscape - Horizontal tablet (1024px) */
@media (max-width: 1024px) {
  .news-block-1 {
    width: 400px;
    height: 400px;
  }

  .news-block-2 {
    width: 540px;
    height: 400px;
  }

  .news-block-3 {
    width: 620px;
    height: 400px;
  }

  .news-block-4 {
    width: 320px;
    height: 400px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 280px;
    height: 90px;
    font-size: 28px;
    bottom: 35px;
  }

  .block1-title {
    font-size: 13px;
    bottom: 60px;
  }

  .news-btn {
    font-size: 12px;
    padding: 6px 16px;
    bottom: 20px;
  }

  .rows {
    gap: 30px;
  }

  .news-blocks-section {
    margin: 40px 0;
  }
}

/* Tablet portrait - Vertical tablet (768px) */
@media (max-width: 768px) {
  .news-block-1 {
    width: 280px;
    height: 280px;
  }

  .news-block-2 {
    width: 360px;
    height: 280px;
  }

  .news-block-3 {
    width: 420px;
    height: 280px;
  }

  .news-block-4 {
    width: 220px;
    height: 280px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 220px;
    height: 80px;
    font-size: 24px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .block1-title {
    font-size: 11px;
    bottom: 55px;
  }

  .news-btn {
    font-size: 10px;
    padding: 5px 14px;
    bottom: 18px;
  }

  .rows {
    gap: 20px;
  }

  .news-blocks-section {
    margin: 30px 0;
  }

  .news-block {
    border-radius: 30px;
  }
}

/* Mobile L - Large smartphones (425px) */
@media (max-width: 425px) {
  .news-block-1 {
    width: 280px;
    height: 280px;
  }

  .news-block-2 {
    width: 360px;
    height: 280px;
  }

  .news-block-3 {
    width: 400px;
    height: 280px;
  }

  .news-block-4 {
    width: 220px;
    height: 280px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 180px;
    height: 70px;
    font-size: 20px;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
  }

  .block1-title {
    font-size: 9px;
    bottom: 50px;
  }

  .news-btn {
    font-size: 9px;
    padding: 4px 12px;
    bottom: 15px;
  }

  .rows {
    gap: 15px;
    justify-content: center;
    align-items: center;
  }

  .news-blocks-section {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .news-block {
    border-radius: 25px;
  }

  .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* Mobile M - Standard smartphone (375px) */
@media (max-width: 375px) {
  .news-block-1 {
    width: 240px;
    height: 240px;
  }

  .news-block-2 {
    width: 300px;
    height: 240px;
  }

  .news-block-3 {
    width: 340px;
    height: 240px;
  }

  .news-block-4 {
    width: 180px;
    height: 240px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 150px;
    height: 60px;
    font-size: 18px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .block1-title {
    font-size: 8px;
    bottom: 45px;
  }

  .news-btn {
    font-size: 8px;
    padding: 3px 10px;
    bottom: 12px;
  }

  .rows {
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .news-blocks-section {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .news-block {
    border-radius: 20px;
  }

  .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* ========================================
   ADDITIONAL RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .page3-desc-wrap {}
}

@media (max-width: 992px) {
  .page3-desc-wrap {
    display: flex;
  }

  .text-block-page3-title {}
}

@media (max-width: 768px) {
  .text-block-page3-title {}
}

@media (max-width: 576px) {
  .text-block-page3-title {}
}

@media (max-width: 430px) {
  .text-block-page3-title {
    text-align: center;
    margin: 0 auto;
  }

  .page3-desc-wrap {
    justify-content: center;
  }

  .page3-main {
    padding: 0 8px;
  }

  /* News blocks adaptation for 430px */
  .news-block-1 {
    width: 300px;
    height: 300px;
  }

  .news-block-2 {
    width: 300px;
    height: 300px;
  }

  .news-block-3 {
    width: 300px;
    height: 300px;
  }

  .news-block-4 {
    width: 300px;
    height: 300px;
  }

  .Rectangle49 {
    width: 100%;
    height: 100%;
  }

  .news-btn-two {
    width: 170px;
    height: 65px;
    font-size: 18px;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
  }

  .block1-title {
    font-size: 8px;
    bottom: 45px;
    padding: 5px 15px;
  }

  .news-btn {
    font-size: 8px;
    padding: 3px 10px;
    bottom: 12px;
  }

  .rows {
    gap: 12px;
    justify-content: center;
    align-items: center;
  }

  .news-blocks-section {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .news-block {
    border-radius: 22px;
  }

  .container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }

  .col-12 {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Page title adaptation */
  .page3-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .page3-desc {
    font-size: 0.9rem;
  }

  .page3-desc-wrap {
    gap: 0.4rem;
    margin-bottom: 0.8rem;
  }

  .page3-subtract {
    width: 18px;
  }

  /* Main content padding */
  .page3-main {
    padding-top: clamp(30px, 6vw, 60px);
    padding-left: 10px;
    padding-right: 10px;
  }

  .page3-title-section {
    margin-bottom: 2rem;
  }
}

@media (max-width: 375px) {
  .text-block-page3-title {}
}

/* ========================================
   BROWSER COMPATIBILITY & BOX SIZING
   ======================================== */
@media (min-width: 1920px) {

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

@media (min-width: 2560px) {

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

/* ========================================
   IMAGE PROTECTION STYLES
   ======================================== */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Specific image protection for news blocks */
.news-block-img,
.Rectangle49,
.page3-bg-svg {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* ========================================
   TITLE ADAPTATION STYLES
   ======================================== */
@media (min-width: 1025px) {
  .page3-desc-wrap {
    display: flex;
    justify-content: flex-start;
  }

  .text-block-page3-title {
    text-align: left;
  }
}

/* ========================================
   FINAL IMAGE PROTECTION
   ======================================== */
img {
  -khtml-user-drag: none;
  -khtml-user-select: none;
  -moz-user-drag: none;
  -moz-user-select: none;
  -o-user-drag: none;
  -o-user-select: none;
  -user-drag: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  pointer-events: none;
  user-select: none;
}