/*---------------------------------------
  BASINDA DROPGPT - BAŞLANGIÇ              
-----------------------------------------*/

/*---------------------------------------
  SECTION HEADER - BAŞLANGIÇ              
-----------------------------------------*/
.section-header {
  position: relative;
}

.section-subtitle {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.2;
  margin-bottom: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/*---------------------------------------
  SECTION HEADER - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  FEATURED NEWS SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.featured-news-item {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.news-image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.news-featured-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-image-wrapper:hover .news-featured-image {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-content {
  padding-left: 20px;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.news-date,
.news-category {
  color: var(--p-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.news-title {
  color: var(--dark-color);
  font-size: 1.5rem;
  line-height: 1.3;
}

.news-excerpt {
  color: var(--p-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}
/*---------------------------------------
  FEATURED NEWS SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  FEATURED NEWS SMALL ITEMS - BAŞLANGIÇ              
-----------------------------------------*/
.featured-news-item-small {
  background: var(--white-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-featured-image-small {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-news-item-small:hover .news-featured-image-small {
  transform: scale(1.05);
}

.news-content-small {
  padding-top: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-title-small {
  color: var(--dark-color);
  font-size: 1.2rem;
  line-height: 1.3;
  flex-grow: 1;
}

.news-excerpt-small {
  color: var(--p-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*---------------------------------------
  FEATURED NEWS SMALL ITEMS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  NEWS CARDS SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.news-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  overflow: visible;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 4rem rgba(25, 178, 192, 0.2);
}

.news-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin: 0 0 20px 0;
  width: 100%;
  height: 250px;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 15px;
  display: block;
}

.news-card:hover .news-card-image {
  transform: scale(1.05);
}

.news-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: auto;
  bottom: auto;
  background: none;
  display: flex;
  align-items: flex-start;
  padding: 0;
}

.news-date-badge {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.news-card-content {
  padding: 0;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.news-date,
.news-category {
  color: var(--p-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.news-card-title {
  color: var(--dark-color);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 600;
}

.news-card-excerpt {
  color: var(--p-color);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.news-read-btn {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.news-read-btn:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.news-card {
  margin-bottom: 30px;
}

/* Featured News Card Style - For col-lg-12 cards (single row cards) */
.col-lg-12 .news-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: visible;
  padding: 40px;
}

.col-lg-12 .news-image-container {
  flex: 0 0 40%;
  margin: 0;
  margin-right: 30px;
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
}

.col-lg-12 .news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.col-lg-12 .news-card-content {
  flex: 1;
  padding: 0;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-lg-12 .news-card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.col-lg-12 .news-card-excerpt {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive adjustments for featured cards */
@media screen and (max-width: 991px) {
  .news-card {
    padding: 30px;
  }
  
  .news-image-container {
    height: 220px;
  }
  
  .col-lg-12 .news-card {
    flex-direction: column;
    padding: 30px;
  }
  
  .col-lg-12 .news-image-container {
    flex: none;
    margin-right: 0;
    margin-bottom: 20px;
    height: 200px;
  }
  
  .col-lg-12 .news-card-content {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .news-card {
    padding: 25px;
  }
  
  .news-image-container {
    height: 200px;
  }
  
  .news-card-title {
    font-size: 1.2rem;
  }
  
  .col-lg-12 .news-card {
    padding: 25px;
  }
  
  .col-lg-12 .news-image-container {
    height: 180px;
  }
  
  .col-lg-12 .news-card-title {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 480px) {
  .news-card {
    padding: 20px;
  }
  
  .news-image-container {
    height: 180px;
  }
  
  .news-card-title {
    font-size: 1.1rem;
  }
  
  .col-lg-12 .news-card {
    padding: 20px;
  }
  
  .col-lg-12 .news-image-container {
    height: 160px;
  }
  
  .col-lg-12 .news-card-title {
    font-size: 1.2rem;
  }
}
/*---------------------------------------
  NEWS CARDS SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  PRESS CONTACT SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.press-contact-card {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.press-contact-header {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(25, 178, 192, 0.1);
}

.press-contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

.press-contact-header h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.press-contact-header .lead {
  color: var(--p-color);
  margin-bottom: 0;
}

.press-info {
  display: flex;
  align-items: start;
  padding: 25px;
  background: rgba(25, 178, 192, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
}

.press-info:hover {
  background: rgba(25, 178, 192, 0.1);
  transform: translateY(-5px);
}

.press-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(25, 178, 192, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.press-info-icon i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.press-info-content h5 {
  color: var(--dark-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.press-info-content p {
  color: var(--p-color);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.press-contact-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.press-contact-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.press-info-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.press-info-link:hover {
  text-decoration: none;
  color: inherit;
}

.press-info-link:hover .press-info {
  background: rgba(25, 178, 192, 0.15);
  transform: translateY(-3px);
}

.press-info-link:hover .press-info-icon {
  background: rgba(25, 178, 192, 0.2);
  transform: scale(1.05);
}
/*---------------------------------------
  PRESS CONTACT SECTION - BİTİŞ              
-----------------------------------------*/


/*---------------------------------------
  DROPDOWN ACTIVE STATE - BAŞLANGIÇ              
-----------------------------------------*/
.dropdown-item.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white-color);
}
/*---------------------------------------
  DROPDOWN ACTIVE STATE - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  MOBILE NAVBAR STYLES - BAŞLANGIÇ              
-----------------------------------------*/
@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*---------------------------------------
  MOBILE NAVBAR STYLES - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  ANIMATION EFFECTS - BAŞLANGIÇ              
-----------------------------------------*/
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card,
.featured-news-item,
.featured-news-item-small,
.press-contact-card {
  animation: slideInUp 0.6s ease-out;
}

.custom-btn:hover i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
/*---------------------------------------
  ANIMATION EFFECTS - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  RESPONSIVE DESIGN - BAŞLANGIÇ              
-----------------------------------------*/
@media (max-width: 768px) {
}

@media screen and (max-width: 991px) {
  .hero-press {
    padding: 80px 0 60px 0;
  }
  
  .featured-news-item {
    padding: 30px;
  }
  
  .news-content {
    padding-left: 0;
    margin-top: 20px;
  }
  
  .news-featured-image {
    height: 250px;
  }
  
  .press-contact-card {
    padding: 30px;
  }
  
  .featured-news-item-small {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .news-featured-image-small {
    height: 180px;
  }
  
  .news-title-small {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    text-align: center;
  }
  
  .section-description {
    text-align: center;
  }
  
  .featured-news-item {
    padding: 25px;
  }
  
  .news-title {
    font-size: 1.3rem;
  }
  
  .news-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .news-card-content {
    padding: 20px;
  }
  
  .news-card-title {
    font-size: 1rem;
  }
  
  .press-info {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .press-info-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .press-contact-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .featured-news-item-small {
    padding: 15px;
  }
  
  .news-featured-image-small {
    height: 160px;
  }
  
  .news-title-small {
    font-size: 1rem;
  }
  
  .news-excerpt-small {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    text-align: center;
  }
  
  .section-description {
    text-align: center;
  }
  
  .news-featured-image {
    height: 200px;
  }
  
  .news-card-image {
    height: 180px;
  }
  
  .featured-news-item {
    padding: 20px;
  }
  
  .news-card-content {
    padding: 15px;
  }
  
  .press-contact-card {
    padding: 25px;
  }
  
  .press-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .featured-news-item-small {
    padding: 15px;
  }
  
  .news-featured-image-small {
    height: 140px;
  }
  
  .news-title-small {
    font-size: 0.95rem;
  }
  
  .news-excerpt-small {
    font-size: 0.8rem;
  }
}
/*---------------------------------------
  RESPONSIVE DESIGN - BİTİŞ              
-----------------------------------------*/


/*---------------------------------------
  MOBİL KENAR BOŞLUKLARI - BAŞLANGIÇ              
-----------------------------------------*/
@media screen and (max-width: 768px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .section-padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .content-wrapper,
  .main-content,
  .page-content {
    padding: 0 15px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .section-description {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .section-padding {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .content-wrapper,
  .main-content,
  .page-content {
    padding: 0 10px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .section-description {
    text-align: center;
  }
}
/*---------------------------------------
  MOBİL KENAR BOŞLUKLARI - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  BASINDA DROPGPT - BİTİŞ              
-----------------------------------------*/