.fp-tableCell {
    width: 100%;
    padding:10px;
}

.section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.section {
	position:relative;
	overflow:hidden;
	width: 100%;
    height: 100vh;
}

.section-header {
	height: 10vh;
    display: flex;
    padding: 0 0px;
	justify-content:space-between;
	align-items:center;
	position:relative;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
	font-family: 'NAMU-1750';
	margin:0 0 15px 0;
}

.section .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    padding: 60px;
}



.section.main .main-section-title {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
	font-family: Raleway;
}


.section.main .main-section-header {
    margin: 0 auto;
	z-index: 1;
	width:80%;
}

.section.main .main-logo {
    width:80%;
	margin:auto auto 30px;
	
}



@media (max-width:1400px) {
	

	
	.section .wrapper {
    padding: 30px;
}
}


@media (max-width:800px) {
	
		.fp-tableCell {
    height:auto!important;
		min-height:100vh;
}
	
	.section {
    height: auto!important;
		overflow: visible;
}
	
	.section .wrapper {
    padding: 8px;
	height: auto;	
}
	
	.section-title {
    font-size: 26px;
}
}	

	
	















.about-section {
	background:#fff;
}



/* Головний контейнер на весь екран, ділимо навпіл (50% / 50%) */
.grid-container {
      gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
	overflow: hidden;
}

/* Лівий блок займає всю свою висоту автоматично */
.left-block {
  background: #e6e7e2;
	border-radius: 20px;
	position:relative;
	overflow: hidden;
}

.about-image {
    max-width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
	position:relative;
}

.about-image:before {
    content:'';
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.about-image img {
    max-width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
}

/* Правий контейнер: ділить висоту навпіл (50% / 50%) між верхнім та нижнім блоками */
.right-container {
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 100%;
	gap: 20px;
}

.right-top {
  background: #e6e7e2;border-radius: 20px;
}

/* Нижня частина праворуч: ділить ширину на 3 рівні колонки */
.right-bottom-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
	gap: 20px;border-radius: 20px;
}

/* Стилізація трьох нижніх блоків для наочності */
.right-bottom-group .block:nth-child(1) { background: #e6e7e2;border-radius: 20px; padding:40px;}
.right-bottom-group .block:nth-child(2) { background: #e6e7e2;border-radius: 20px; padding:40px;}
.right-bottom-group .block:nth-child(3) { background: #e6e7e2;border-radius: 20px; padding:40px;}

/* Загальні стилі для тексту всередині блоків (можна видалити) */
.block {
    background: #e6e7e2;
    border-radius: 20px;
    
}




.left-block .block-content {
    position: absolute;
    bottom: 0;
    color: #ffffff;
    padding: 120px 40px 40px;
    background-image: linear-gradient(to top, rgba(88, 122, 43, 1) 0%, rgba(88, 122, 43, 0) 100%);
}

.left-block .block-content .block-title {
	font-size:36px;
	
}

.left-block .block-content .block-subtitle {
	font-size:24px;
	margin:5px 0 10px 0;
}















.mission-section {
	
}


.mission-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Створює легкий ефект паралаксу при скролі */
    padding: 100px 0; /* Відступи зверху та знизу секції */
    
    overflow: hidden;
}

/* Оверлей (затемнення фону), щоб текст поверх фото читався ідеально */
.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(88, 122, 43, 0.7) 100%);
    z-index: 1;
}

/* Контентний контейнер піднімаємо вище оверлею */
.mission-container {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Головний текст місії (зверху) */
.mission-header-text {
    max-width: 800px;
    margin-bottom: 50px;
    font-size: 24px;
    line-height: 1.5;
}
.mission-header-text h2, 
.mission-header-text p {
    color: #ffffff !important;
}

/* Сітка для таргетів (target-1 ... target-7) */
.mission-targets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Автоматично розподіляє колонки */
    gap: 20px;
}

/* Стиль окремої картки таргета */
.target-card {
    background: rgba(255, 255, 255, 0.15); /* Напівпрозоре скло (Glassmorphism) */
    backdrop-filter: blur(10px); /* Розмиття фону за карткою */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.target-card p {
    color: #ffffff;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}





























.publ-grid {
    flex: 1;
    display: grid;
    /* Створюємо 2 стовпчики, кожен по 50% (з урахуванням gap) */
    grid-template-columns: repeat(2, 1fr);
    /* Створюємо 2 ряди рівної висоти */
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    min-height: 0;
}

.publ-item {
    display: flex;
    overflow: hidden;
    /* Прибираємо width: 50%, бо Grid сам керує шириною завдяки 1fr */
    width: 100%; 
	position:relative;
	gap:10px;
}
		
.publ-item .publ-image {
    height: 100%;
    /* Якщо потрібно, щоб блок з картинкою займав половину картки: */
    width: 50%; 
	border-radius:20px;
	overflow:hidden;
}	
		
.publ-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}	
		
.publ-item .publ-content {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
	gap:10px;
}	


.publ-item:nth-child(1) {
    
}
		
.publ-item:nth-child(1) .publ-image, .publ-item:nth-child(4) .publ-image  {
    width:100%;
}	
		
.publ-item:nth-child(1) .publ-content, .publ-item:nth-child(4) .publ-content {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 47%;
    height: 90%;
    transform: translateY(-50%);
}
		
.publ-item:nth-child(1) .publ-content, .publ-item:nth-child(4) .publ-content {
	background:#ffe048;
}	

.publ-meta {
	display:flex;
	gap:10px;
	align-items:center;
	font-size:14px;
}


.publ-category {
	background: #e6e7e2;
	padding: 3px 10px 6px 10px;
	border-radius:9px;
	text-decoration:none;
	
}

.publ-date {
    color:#808179;
}


		
.publ-item:nth-child(4) .publ-content {
	background:#d6d243;
}




@media (max-width:800px) {
	.publ-grid {
   grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 10px;
}
	
	
	.publ-item .publ-image {
    display: none;
}
	
	.publ-item .publ-content {
    width:100%;
		padding: 25px;
		background:#fff!important;
}
	
	.publ-item:nth-child(1) .publ-content, .publ-item:nth-child(4) .publ-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
}
	
	.publ-item .publ-title {
    font-size: 14px;
}
	
	.publ-meta {
    font-size: 12px;
}
	
	.publ-category {
    padding: 2px 10px 2px 10px;
}
	
}





















