/* 
 * Cerrahpaşa Tıp Fakültesi — Aday Öğrenci Websitesi
 * Component: Dean's Message Section Styles
 */

.dekan-mesaj {
  background-color: var(--color-white);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.dekan-mesaj .grid-2 {
  align-items: center;
  gap: 64px;
}

.dekan-img-wrap {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(139, 26, 43, 0.06);
  z-index: 1;
}

/* Gold background decorative frame */
.dekan-img-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--color-gold);
  border-radius: 12px;
  z-index: -1;
  pointer-events: none;
  transition: transform var(--transition-normal);
}

.dekan-img-wrap:hover::after {
  transform: translate(-5px, -5px);
}

.dekan-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--color-border);
}

.dekan-content {
  display: flex;
  flex-direction: column;
}

.dekan-content h2 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.dekan-divider {
  width: 80px;
  height: 4px;
  background-color: var(--color-gold);
  margin-bottom: 32px;
  border-radius: 2px;
}

.dekan-text-content {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 36px;
  white-space: pre-line; /* Preserves newlines from database */
  text-align: justify;
}

.dekan-signature {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  border-left: 3px solid var(--color-gold);
  padding-left: 18px;
  line-height: 1.5;
  white-space: pre-line;
}

/* Responsive collapse on tablets and smaller screens */
@media (max-width: 992px) {
  .dekan-mesaj {
    padding: 80px 20px;
  }
  
  .dekan-mesaj .grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .dekan-img-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
  
  .dekan-img-wrap::after {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
  }
  
  .dekan-content {
    align-items: center;
  }
  
  .dekan-content h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .dekan-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .dekan-text-content {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
  
  .dekan-signature {
    align-self: flex-start;
  }
}
