body{
  margin:0;
  background:
    linear-gradient(rgba(251,237,225,0.70), rgba(251,237,225,0.70)),
    url("../top-view-watercolor-paint-paper-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


@font-face {
    font-family: Eyesome;
    src: url(../fonts/Eyesome\ Italic.otf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: handelson;
    src: url(../fonts/zhandelson-three.otf);
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: antoniobold;
    src: url(../fonts/Antonio-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: antonio;
  src: url(../fonts/Antonio-Light.ttf);
}


@font-face {
  font-family: billie;
  src: url(../fonts/Billie\ Eilish.otf);
}

@font-face {
  font-family: billie2;
  src: url(../fonts/billie\ eilish.ttf);
}

@font-face {
  font-family: basic;
  src: url(../fonts/Basic\ Confident.otf);
}


@font-face {
  font-family: jelly;
  src: url(../fonts/Jelly-BF64e0b51d0ae27.otf);
}


@font-face {
  font-family: mogesty;
  src: url(../fonts/Mogesty-Regular.otf);
}


@font-face {
  font-family: fascinate;
  src: url(../fonts/Fascinate-Regular.ttf);
}


@font-face {
    font-family: oswald;
    src: url(../fonts/Oswald-Extra-LightItalic.ttf);
}

*{
  box-sizing: border-box;
}

body{
  margin:0;
  background-color: #fbdfc6;
}

.logo-name{
  font-family: "jelly", system-ui, -apple-system, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #b5b486
;
}

:root{
  --bg:#f3efe8;
  --border: rgba(136, 86, 86, 0.08);
}


.site-header{
  position: absolute;
  top:0;
  left:0;
  width:100%;
  padding: 18px;
  z-index: 10;
}

.header{
  display:flex;
  align-items:center;
  justify-content: flex-start;
  gap: 16px;
}

.header-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img{
  height: 102px;
  width: auto;
  object-fit: contain;
}

.suggest-wrap{
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 140px 0 100px;
  display: grid;
  gap: 70px;
}

.suggest-intro p{
  font-family: basic, system-ui, sans-serif;
  font-size: 45px;
  color: rgba(60,60,60,0.7);
  max-width: 600px;
}


.suggest-card{
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: center;
}

.suggest-media img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

/* Yazı */
.suggest-info h2{
  margin: 0 0 10px;
  font-family: antoniobold, system-ui, sans-serif;
  font-size: 30px;
  color: #6c7655;
}

.suggest-info p{
  margin: 0 0 14px;
  font-family: oswald, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(60,60,60,0.7);
  max-width: 420px;
}

.suggest-link{
  font-family: basic, system-ui, sans-serif;
  font-size: 33px;
  color: #8b8b6b;
  text-decoration: none;
}

.suggest-link:hover{
  opacity: 0.7;
}

.suggest-note{
  font-family: basic, system-ui, sans-serif;
  font-size: 13px;
  color: rgba(120,120,120,0.6);
  font-style: italic;
}

/* Resimsiz kart */
.suggest-card:not(:has(.suggest-media)){
  grid-template-columns: 1fr;
}

/* Mobil */
@media (max-width: 768px){
  .suggest-card{
    grid-template-columns: 1fr;
  }

  .suggest-media img{
    height: 220px;
  }
}