.elementor-408 .elementor-element.elementor-element-80ff1c4:not(.elementor-motion-effects-element-type-background), .elementor-408 .elementor-element.elementor-element-80ff1c4 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-408 .elementor-element.elementor-element-80ff1c4{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-408 .elementor-element.elementor-element-80ff1c4 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}/* Start custom CSS for html, class: .elementor-element-de345fc *//* Base Container & Typography */
.ink-blog-wrapper {
  background-color: #0b0b0b;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 30px 16px;
  width: 100%;
  box-sizing: border-box;
}

.ink-blog-wrapper *, 
.ink-blog-wrapper *::before, 
.ink-blog-wrapper *::after {
  box-sizing: border-box;
}

.ink-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Section Title */
.ink-section-header {
  margin-bottom: 24px;
}

.ink-section-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.ink-section-count {
  color: #666666;
  font-size: 15px;
  font-weight: 600;
}

/* 2-Column Responsive Grid */
.ink-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .ink-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Article Card */
.ink-card {
  background-color: #121212;
  border: 1px solid #222222;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ink-card:hover {
  transform: translateY(-4px);
  border-color: #ff5500;
  box-shadow: 0 10px 24px rgba(255, 85, 0, 0.12);
}

/* Card Image */
.ink-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #1a1a1a;
  overflow: hidden;
}

.ink-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ink-card:hover .ink-card-img {
  transform: scale(1.04);
}

/* Card Content Area */
.ink-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ink-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 12px 0;
  transition: color 0.2s ease;
}

.ink-card:hover .ink-card-title {
  color: #ff5500;
}

.ink-card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: #929292;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Card Footer Meta */
.ink-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c;
  padding-top: 14px;
  font-size: 12px;
  color: #6a6a6a;
}

.ink-meta-items {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ink-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ink-arrow-btn {
  color: #6a6a6a;
  transition: transform 0.2s ease, color 0.2s ease;
  display: inline-flex;
}

.ink-card:hover .ink-arrow-btn {
  transform: translateX(4px);
  color: #ff5500;
}

/* Reader Modal Popup */
.ink-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.ink-modal-overlay.active {
  display: flex;
}

.ink-modal-card {
  background: #141414;
  border: 1px solid #282828;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  position: relative;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.ink-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #202020;
  border: none;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.ink-modal-close:hover {
  background: #ff5500;
  color: #000000;
}

.ink-modal-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.ink-modal-meta-row {
  font-size: 12px;
  color: #777777;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.ink-modal-banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  display: block;
}

.ink-modal-text {
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1.8;
}

.ink-modal-text p {
  margin-bottom: 14px;
}/* End custom CSS */