/* 
 * OLIVE TUTORIAL BİLGİ KUTUSU CSS
 * Zeytin tonları: #6b8e23, #808000, #556b2f, #8fbc8f, #9acd32
 */

/* ANA KUTU */
.olive-two-column-box {
  width: 728px;
  border: 1px solid #556b2f; /* Koyu zeytin */
  border-radius: 7px 7px 0 0;
  background: #f5f9f0; /* Açık zeytin arka plan */
  position: relative;
  padding: 0px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* ÜST BAŞLIK ŞERİDİ */
.olive-ust-serit {
  width: 100%;
  height: 48px;
  border-radius: 7px 7px 0 0;
  background-color: #6b8e23; /* Zeytin yeşili */
}

.olive-ust-serit-text {
  font-family: Helvetica, sans-serif;
  color: #2f4f2f; /* Koyu zeytin metin */
  font-size: 24px;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
}

/* İÇERİK ALANI - FLEX DÜZEN */
.olive-two-column-box-inner {
  display: flex;
  gap: 10px;
  padding: 5px;
  box-sizing: border-box;
  padding-bottom: 44px;
}

/* SOL SÜTUN (resim) */
.olive-col-left img {
  width: 400px;
  height: 225px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #9acd32; /* Açık zeytin border */
}

/* SAĞ SÜTUN */
.olive-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* SAĞ SÜTUN BAŞLIĞI */
.olive-right-header {
  margin: 0 0 12px 0;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
  color: #556b2f; /* Koyu zeytin başlık */
  font-weight: bold;
}

/* ANAHTAR KAVRAMLAR LİSTESİ */
.olive-key-list {
  font-family: Helvetica, sans-serif;
  font-size: 15px;
  color: #2f4f2f; /* Koyu zeytin metin */
  text-align: left;
  line-height: 1.5;
  margin: 0 0 18px 0;
  padding: 0;
}

.olive-key-list div {
  margin-bottom: 5px;
}

/* BUTON GRUBU */
.olive-btn-group {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.olive-btn {
  display: inline-block;
  padding: 6px 15px;
  font-size: 11px;
  border-radius: 30px;
  text-decoration: none;
  color: #ffffff; /* Beyaz metin */
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  transition: all 0.3s;
}

.olive-btn.purple {
  background: #556b2f; /* Koyu zeytin */
}

.olive-btn.purple:hover {
  background: #3d4d21; /* Daha koyu zeytin */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(85, 107, 47, 0.3);
}

.olive-btn.red {
  background: #6b8e23; /* Zeytin yeşili */
  color: #ffffff;
}

.olive-btn.red:hover {
  background: #56701c; /* Daha koyu zeytin yeşili */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(107, 142, 35, 0.3);
}

/* ALT KAPANIŞ ŞERİDİ */
.olive-two-column-box-alt-serit {
  position: absolute;
  width: 100%;
  height: 24px;
  background-color: #e0ebd8; /* Açık zeytin */
  bottom: 0;
  font-family: Helvetica, sans-serif;
  color: #556b2f; /* Koyu zeytin metin */
  font-size: 12px;
  text-align: center;
  line-height: 24px;
}