.elementor-4018 .elementor-element.elementor-element-af8ac2d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-4018 .elementor-element.elementor-element-65feeb1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4018 .elementor-element.elementor-element-2e25489{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4018 .elementor-element.elementor-element-2e25489:not(.elementor-motion-effects-element-type-background), .elementor-4018 .elementor-element.elementor-element-2e25489 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#3B444B00;}.elementor-4018 .elementor-element.elementor-element-142d51f{--spacer-size:51px;}.elementor-4018 .elementor-element.elementor-element-9c1f495 > .elementor-widget-container{margin:10px 0px 0px 0px;}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper{margin:0px 0px 22px 0px;}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper .tpg-widget-heading{font-family:"Bevan", Sans-serif;font-size:40px;font-weight:400;color:var( --e-global-color-accent );}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before{background-color:var( --e-global-color-text );}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style4::before{background-color:var( --e-global-color-text );width:440px;bottom:-17px;}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style4::after{width:calc(100% - calc(440px + 10px));bottom:calc(-17px + 2px);}.elementor-4018 .elementor-element.elementor-element-e9c6da9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4018 .elementor-element.elementor-element-a8dd019{--display:flex;}@media(min-width:768px){.elementor-4018 .elementor-element.elementor-element-65feeb1{--width:10%;}.elementor-4018 .elementor-element.elementor-element-2e25489{--width:80%;}.elementor-4018 .elementor-element.elementor-element-e9c6da9{--width:10%;}}@media(max-width:1024px){.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style4::before{width:230px;}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style4::after{width:calc(100% - calc(230px + 10px));}}@media(max-width:767px){.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style4::before{width:288px;}.elementor-4018 .elementor-element.elementor-element-9c1f495 .tpg-widget-heading-wrapper.heading-style4::after{width:calc(100% - calc(288px + 10px));}}/* Start custom CSS for shortcode, class: .elementor-element-6483820 *//* Fan Art Grid Düzeni */
.fan-art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 10px;
}

/* Her bir Fan Art Kutusu */
.fan-art-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.fan-art-item:hover {
  transform: scale(1.05);
}

/* Resim Container ve Resim */
.fan-art-img-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

/* Beğeni ve Yorum Sayacı */
.fan-art-stats {
  padding: 8px 12px;
  font-size: 14px;
  background: #f7f7f7;
  display: flex;
  justify-content: space-between;
  color: #333;
  font-weight: 600;
  user-select: none;
}

.fan-art-stats span {
  cursor: default;
}

/* Modal Arka Plan */
.fan-art-modal-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #3B444B;
  display: none; /* Başlangıçta gizli */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: auto;
  padding: 30px 20px;
}

/* Modal İçerik */
.fan-art-modal-content {
  background: #3B444B;
  color: white;
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Modal Üst Bar */
.fan-art-modal-header {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  flex-shrink: 0;
}

/* Modal Kullanıcı Avatarı */
.fan-art-modal-header img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Modal Kullanıcı Adı */
.fan-art-modal-header .username {
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

/* Modal Kapatma Butonu */
.fan-art-modal-close {
  margin-left: auto;
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  color: white;
  user-select: none;
  transition: color 0.2s ease;
}

.fan-art-modal-close:hover {
  color: #ff5252;
}

/* Modal Resim */
.fan-art-modal-image {
  flex-grow: 1;
  text-align: center;
  padding: 10px 20px;
}

.fan-art-modal-image img {
  max-width: 100%;
  max-height: 50vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,255,255,0.25);
}

/* Açıklama Alanı */
.fan-art-modal-description {
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.4;
  overflow-wrap: break-word;
  min-height: 50px;
  color: #eee;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* Yorum Alanı */
.fan-art-modal-comments {
  padding: 15px 20px;
  background: #2e363d;
  overflow-y: auto;
  max-height: 220px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  color: white;
  font-size: 14px;
}

/* Scrollbar (Opsiyonel, daha güzel görünüm için) */
.fan-art-modal-comments::-webkit-scrollbar {
  width: 6px;
}
.fan-art-modal-comments::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
  border-radius: 3px;
}
.fan-art-modal-comments::-webkit-scrollbar-track {
  background-color: transparent;
}/* End custom CSS */