/* rogmovies.club — sidebar + single post layout (same-to-same) */

:root {
  --accent: #7c5cfc;
  --accent-light: #a78bfa;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a78;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  padding-bottom: 30px;
  width: 100%;
  align-items: start;
}

@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }
}

.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
}

.widget-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recent-post-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recent-post-item a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.4;
  display: block;
  padding: 5px 10px;
  background: rgb(255 255 255 / 0.03);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.recent-post-item a:hover {
  color: #fff;
  background: #000;
  border-left-color: var(--accent);
}

/* Sidebar search — rogmovies.club inline CSS */
#vmovies-search-box.sidebar-search-box,
.post-sidebar #vmovies-search-box {
  max-width: 310px;
  width: 100%;
}

.post-sidebar #vmovies-search-box .vms-search-form {
  display: flex !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  height: 42px !important;
}

.post-sidebar #vmovies-search-box .vms-search-input {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  padding: 0 15px !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
  margin: 0 !important;
  height: 100% !important;
}

.post-sidebar #vmovies-search-box .vms-search-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.post-sidebar #vmovies-search-box .vms-search-btn {
  background: #c2185b !important;
  color: #ffffff !important;
  border: none !important;
  padding: 0 18px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0;
  cursor: pointer;
  min-width: auto !important;
  margin: 0 !important;
  border-radius: 0 !important;
  height: 100% !important;
}

.post-sidebar #vmovies-search-box .search-text {
  display: inline-block !important;
  font-size: 12px;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.post-sidebar #vmovies-search-box .vms-search-btn i.fas {
  margin-right: 6px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .post-sidebar #vmovies-search-box {
    max-width: 100% !important;
    width: 100% !important;
  }

  .post-sidebar #vmovies-search-box .vms-search-form {
    height: 40px !important;
    border-radius: 20px !important;
  }

  .post-sidebar #vmovies-search-box .search-text {
    font-size: 11px;
  }
}
