/* 
 * YELLOW TUTORIAL BİLGİ KUTUSU CSS
 * Sarı tonlar: #ffd700 (altın sarısı), #fffacd, #fafad2, #eee8aa, #f0e68c
 */

/* ANA KUTU */
.yellow-two-column-box {
  width: 728px;
  border: 1px solid #b8860b; /* Koyu altın sarısı */
  border-radius: 7px 7px 0 0;
  background: #fffacd; /* Açık limon sarısı */
  position: relative;
  padding: 0px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* ÜST BAŞLIK ŞERİDİ */
.yellow-ust-serit {
  width: 100%;
  height: 48px;
  border-radius: 7px 7px 0 0;
  background-color: #ffd700; /* Altın sarısı */
}

.yellow-ust-serit-text {
  font-family: Helvetica, sans-serif;
  color: #8b7500; /* Koyu sarı metin */
  font-size: 24px;
  text-align: center;
  line-height: 48px;
}

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

/* SOL SÜTUN (resim) */
.yellow-col-left img {
  width: 400px;
  height: 225px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #f0e68c; /* Khaki sarısı */
}

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

/* SAĞ SÜTUN BAŞLIĞI */
.yellow-right-header {
  margin: 0 0 12px 0;
  font-family: Helvetica, sans-serif;
  font-size: 20px;
  color: #daa520; /* Altın rengi */
}

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

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

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

.yellow-btn {
  display: inline-block;
  padding: 6px 15px;
  font-size: 11px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-family: Helvetica, sans-serif;
  transition: background-color 0.3s;
}

.yellow-btn.purple {
  background: #9c7c00; /* Koyu altın */
}

.yellow-btn.purple:hover {
  background: #6b5500; /* Daha koyu altın */
}

.yellow-btn.red {
  background: #ff8c00; /* Koyu portakal */
}

.yellow-btn.red:hover {
  background: #cc7000; /* Daha koyu portakal */
}

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