/**
 * ArcheoRoma 2025 Styles
 * New styles and improvements added in 2025
 * 
 * @package Cheetah
 */

/* ============================================================================
   GENERIC ARCHIVE PAGES - STYLES (2025)
   Reusable for all archive pages: events, tours, tickets, sites, hotels
   ============================================================================ */

/* MOBILE FILTER BUTTON */
.ar-mobile-filter-button {
  display: none;
  padding: 15px 20px;
  margin-bottom: 20px;
  background: #98012e;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
}

.ar-mobile-filter-button:hover {
  background: #810027;
}

.ar-mobile-filter-button:active {
  background: #810027;
}

/* MOBILE LIGHTBOX */
.ar-mobile-filter-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ar-lightbox-content {
  position: relative;
  background: #fff;
  margin: 20px auto;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ar-close-lightbox {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  width: 32px;
  height: 32px;
  transition: color 0.2s ease;
}

.ar-close-lightbox:hover {
  color: #000;
}

#lightboxFilterContainer {
  padding: 60px 20px 20px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

#lightboxFilterContainer .sort-by {
  margin: 20px 0 10px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #444;
}

#lightboxFilterContainer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#lightboxFilterContainer li {
  margin-bottom: 8px;
}

#lightboxFilterContainer label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
  font-size: 15px;
}

#lightboxFilterContainer input[type="checkbox"],
#lightboxFilterContainer input[type="radio"] {
  margin-right: 10px;
  cursor: pointer;
}

/* MOBILE COUNT BUTTON */
.ar-event-count-container {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.ar-mobile-event-count-button {
  width: 100%;
  padding: 15px 20px;
  background: #98012e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.ar-mobile-event-count-button:hover:not(.disabled) {
  background: #7a011f;
}

.ar-mobile-event-count-button.disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.ar-mobile-event-count-button .event-count {
  font-weight: 700;
}

.button-loader {
  display: none;
  width: 20px;
  height: 20px;
  margin: 0 auto 10px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #98012e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.button-loader.active {
  display: block;
}

/* STICKY FILTER BAR */
.ar-archive-sticky-bar {
  position: sticky;
  position: -webkit-sticky;
  top: 56px;
  z-index: 100;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

/* Shadow when scrolled (JavaScript adds is-scrolled class) */
.ar-archive-sticky-bar.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logged-in .ar-archive-sticky-bar {
  top: 84px;
}

@media screen and (max-width: 782px) {
  .logged-in .ar-archive-sticky-bar {
    top: 102px;
  }
}

/* STICKY SIDEBAR - JavaScript-controlled (CSS sticky didn't work) */
.ar-archive-sidebar .sticky-box2 {
  position: relative;
}

.ar-archive-sidebar .sticky-box2.ar-sidebar-stuck {
  position: fixed;
  top: 103px;
  width: 260px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  z-index: 5;
}

.logged-in .ar-archive-sidebar .sticky-box2.ar-sidebar-stuck {
  top: 172px;
}

@media screen and (max-width: 782px) {
  .logged-in .ar-archive-sidebar .sticky-box2.ar-sidebar-stuck {
    top: 186px;
  }
}

@media (max-width: 767px) {
  .ar-archive-sidebar .sticky-box2.ar-sidebar-stuck {
    position: relative !important;
    width: auto !important;
  }
}

@media (min-width: 768px) {
  .sticky-box2 {
    display: block !important;
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 767px) {
  .ar-mobile-filter-button {
    display: block;
  }

  .sticky-box2 {
    display: none !important;
  }

  .ar-lightbox-content {
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
  }

  #lightboxFilterContainer {
    padding: 70px 15px 15px;
  }
}

@media (min-width: 768px) {
  .ar-mobile-filter-button,
  .ar-mobile-filter-lightbox {
    display: none !important;
  }
  
  .ar-archive-sticky-bar,
  .ar-archive-sticky-bar .sticky-box-top {
    display: block !important;
  }
}

/* LOADING INDICATOR */
#loading.loader-custom-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
  pointer-events: none;
}

#loading.loader-custom-main[style*="display: block"] {
  pointer-events: auto;
}

#loading .loader-content {
  border-top-color: #98012e !important;
}

/* CHECKBOX AND RADIO BUTTON STYLING */
.sticky-box2 input[type="checkbox"],
.sticky-box2 input[type="radio"],
.ar-mobile-filter-lightbox input[type="checkbox"],
.ar-mobile-filter-lightbox input[type="radio"] {
  cursor: pointer;
  filter: none !important;
}

.sticky-box2 input[type="checkbox"]:checked,
.ar-mobile-filter-lightbox input[type="checkbox"]:checked, .ar-mobile-filter-lightbox input[type="checkbox"]:checked {
  accent-color: #98012e !important;
  background-color: #98012e !important;
  border-color: #98012e !important;
  filter: none !important;
}

.sticky-box2 input[type="radio"]:checked,
.ar-mobile-filter-lightbox input[type="radio"]:checked {
  accent-color: #98012e !important;
  background-color: #98012e !important;
  border-color: #98012e !important;
  filter: none !important;
}

/* FILTER DROPDOWN */
.sort-by {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: #444;
}

.filter_dropdown_set {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  color: #333;
  cursor: pointer;
  min-width: 150px;
}

.filter_dropdown_set option {
  color: #333;
  background: #fff;
  padding: 5px;
}

.filter_dropdown_set:focus {
  outline: none;
  border-color: #98012e;
  box-shadow: 0 0 0 1px #98012e;
}

.filter_dropdown_set:hover {
  border-color: #999;
}

/* EMPTY STATE */
.empty_posts {
  padding: 40px 20px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
  color: #666;
  font-size: 16px;
  width: -webkit-fill-available;
}

/* CONTENT TRANSITIONS */
#displayPostsData {
  min-height: 400px;
  padding-top: 12px;
}

#displayPostsData > * {
  opacity: 1;
  animation: none;
}

/* STICKY BAR - SORT BY & VIEW SWITCHER */
.ar-archive-sticky-bar .sticky-box-top {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 7px 20px 7px 20px !important;
  transition: all 0.3s ease;
  width: 100% !important;
  gap: 15px;
}

.view-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
}

.view-option {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.view-option svg {
  stroke: #666;
  transition: stroke 0.2s ease;
}

.view-option:hover {
  border-color: #999;
  background: #f5f5f5;
}

.view-option:hover svg {
  stroke: #333;
}

.view-option.active {
  background: #f5f5f5;
}

.view-option.active svg {
  stroke: #333;
}

.sort-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-section p {
  margin: 0 !important;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.sort-section select {
  flex-shrink: 0;
}

/* VIEW LAYOUTS - Grid vs List */
#displayPostsData.grid-view {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

#displayPostsData.list-view {
  display: flex;
  flex-direction: column;
}

#displayPostsData.list-view .ct-box-hp {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 20px;
}

#displayPostsData.grid-view .ct-box-hp {
  margin-bottom: 20px;
}

#displayPostsData.list-view .widget-box-2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

#displayPostsData.list-view .widget-box-2-img {
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0;
}

#displayPostsData.list-view .widget-box-2-img img {
  width: 100% !important;
  max-width: 100% !important;
}

#displayPostsData.list-view .widget-box-2-bottom,
#displayPostsData.list-view .widget-box-2-sublinks {
  width: 100%;
}

#displayPostsData.list-view .widget-box-2-footer {
  width: 100%;
  margin-left: 0;
}

/* FILTER SIDEBAR */
.mainFilterContainer {
  background: #fff;
}

.sticky-box2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-box2 label {
  display: inline;
  cursor: pointer;
  font-size: 17px;
  margin-left: 8px;
}

.sticky-box2 input[type="checkbox"],
.sticky-box2 input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
  vertical-align: middle;
}
.archive-excerpt {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: rgb(85, 85, 85);
  padding: 0px;
  margin: 12px 0px;
}
.archive-meta {
  margin: 0 0 11px 0;
}

/* Duration overlay for Tours (white box at top-right, like price) */
.ar-box-label-top-right {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 17px;
  background-color: #fff;
  color: #98012e;
  padding: 4px 10px 4px 10px;
  margin: 0 0 0 8px;
  z-index: 12;
  pointer-events: none;
  display: inline-block;
  max-height: 29px;
  border-radius: 2px;
  font-weight: 600;
}
.ar-box-label-bottom-left {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 17px;
  background-color: #98012e;
  color: #ffffff;
  padding: 4px 10px 4px 10px;
  margin: 0 0 0 8px;
  z-index: 12;
  pointer-events: none;
  display: inline-block;
  max-height: 29px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.ar-box-label-top-right p,
.ar-box-label-bottom-left p {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 17px;
}



/* Dual Range Slider Styles - Based on w3collective tutorial */
.ar-range-slider {
  height: 5px;
  position: relative;
  background-color: #ddd;
  border-radius: 2px;
}

.ar-range-selected {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background-color: #98012e;
}

.ar-range-input {
  position: relative;
}

.ar-range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -6px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  padding: 0;
  margin-left: 0px;
}

.ar-range-input input::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border: 3px solid #98012e;
  background-color: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.ar-range-input input::-moz-range-thumb {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  border: 3px solid #98012e;
  background-color: #fff;
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.ar-range-input input:active::-webkit-slider-thumb {
  border-color: #7a0123;
}

.ar-range-input input:active::-moz-range-thumb {
  border-color: #7a0123;
}

.ar-range-price {
  margin: 15px 0 0 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.ar-range-price label {
  font-size: 12px;
  color: #666;
}

.ar-range-price input {
  width: 60px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
}

/* END GENERIC ARCHIVE PAGES - STYLES (2025)
   ============================================================================ */

/* ============================================================================
   PAGINATION - MODERN ARROW-BASED DESIGN (2025)
   Universal pagination for all archive pages
   ============================================================================ */

.paginator {
  clear: both;
  width: 100%;
  margin-top: 30px;
  text-align: center;
  display: block;
}

#displayPostsData.grid-view #custom_pagination {
  flex: 0 0 100%;
  order: 999;
}

#displayPostsData.list-view #custom_pagination {
  width: 100%;
  margin-top: 30px;
}

.pgn-item,
.pgn-item-left,
.pgn-item-right {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 0 0 8px;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  color: #98012e;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  transition: all 0.3s linear;
  z-index: 10;
}

.pgn-item:hover {
  background-color: #98012e;
  color: #fff;
}

.pgn-item-left:hover::before,
.pgn-item-right:hover::before {
  transform: translateX(0);
}

.pgn-item-left:hover::after,
.pgn-item-right:hover::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.pgn-item.disabled,
.pgn-item-left.disabled,
.pgn-item-right.disabled {
  opacity: 0.5;
  pointer-events: none;
  background-color: #dedede;
}

.pgn-item.pgn-current {
  pointer-events: none;
  color: #333;
  box-shadow: none;
}

.pgn-item-left::before,
.pgn-item-right::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #98012e;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}

.pgn-item-left::before {
  right: 0;
  transform: translateX(100%);
}

.pgn-item-right::before {
  left: 0;
  transform: translateX(-100%);
}

.pgn-item-left::after,
.pgn-item-right::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #98012e;
  border-bottom: 2px solid #98012e;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.2s ease-in-out 0s;
}

.pgn-item-left::after {
  transform: rotate(135deg);
}

.pgn-item-right::after {
  transform: rotate(-45deg);
}

.pgn-item-left.disabled::after,
.pgn-item-right.disabled::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* END PAGINATION - MODERN ARROW-BASED DESIGN (2025)
   ============================================================================ */

/* ============================================================================
   EVENTS ARCHIVE - SPECIFIC STYLES (2025)
   These styles are specific to the Events archive page
   ============================================================================ */

/* Event Metadata - Date, Location, Subtitle */
.event-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}

#displayPostsData.grid-view .event-meta-list,
#displayPostsData.grid-view .event-subtitle-list {
  display: none !important;
}

#displayPostsData.grid-view .event-meta-grid {
  display: block;
}

#displayPostsData.list-view .event-meta-grid {
  display: none !important;
}

#displayPostsData.list-view .event-meta-list,
#displayPostsData.list-view .event-subtitle-list {
  display: block;
}

.event-meta-grid p {
  margin: 8px 0 !important;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
}

.event-meta-grid .event-date,
.event-meta-grid .event-location {
  color: #666;
}

.event-meta-list .event-date-location {
  margin: 8px 0 12px 0 !important;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.event-date-inline,
.event-location-inline {
  display: inline-flex;
  align-items: center;
  color: #666;
}

.event-subtitle-list {
  margin: 12px 0 !important;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.event-date-text, .event-location-text {
    color: rgb(102, 102, 102);
    font-size: 14px;
    line-height: 28px;
    padding-bottom:5px;
}

/* END EVENTS ARCHIVE - SPECIFIC STYLES (2025)
   ============================================================================ */

/* ============================================================================
   SITES SLIDE-IN SIDEBAR - "Show All Sites" Feature
   Used in: Tickets, Tours, Events, Hotels archives
   Generic component - works for all archive types
   ============================================================================ */

/* Show All Sites Button */
.ar-show-all-sites-btn {
  display: block;
  width: 100%;
  padding: 10px 15px;
  margin-top: 5px;
  background: transparent;
  border: none;
  color: #98012e;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.ar-show-all-sites-btn:hover {
  color: #810027;
  text-decoration: underline;
}

/* Overlay - DISABLED (no overlay, no blur, no click-to-close)
.ar-sites-sidebar-overlay {
  display: none;
}
*/

/* Slide-in Sidebar Container */
.ar-sites-slidein-sidebar {
  position: fixed;
  top: 0;
  right: -400px; /* Hidden off-screen */
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Adjust for WordPress admin bar */
body.admin-bar .ar-sites-slidein-sidebar {
  top: 32px;
  height: calc(100vh - 32px);
}

/* Adjust for site menu bar (56px) */
.ar-sites-slidein-sidebar {
  top: 56px;
  height: calc(100vh - 56px);
}

/* Both admin bar AND menu bar */
body.admin-bar .ar-sites-slidein-sidebar {
  top: 88px; /* 32px admin bar + 56px menu */
  height: calc(100vh - 88px);
}

/* Active state - slide in */
.ar-sites-slidein-sidebar.active {
  right: 0;
}

/* Sidebar Content Container */
.ar-sites-slidein-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Sidebar Header */
.ar-sites-slidein-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
  background: #f7f0f0;
}

.ar-sites-slidein-header h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  color: #333;
}

/* Close Button */
.ar-close-sites-slidein {
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  transition: color 0.2s ease;
}

.ar-close-sites-slidein:hover {
  color: #98012e;
}

/* Sidebar Body - Scrollable List */
.ar-sites-slidein-body {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
}

.ar-sites-slidein-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.ar-sites-slidein-body label {
  cursor: pointer;
}

.ar-sites-slidein-body label:hover {
  color: #98012e;
}

.ar-sites-slidein-body ul li:last-child label {
  border-bottom: none;
}

.ar-sites-slidein-body input[type="checkbox"] {
  margin-right: 12px;
  cursor: pointer;
  accent-color: #98012e;
}

/* Sidebar Footer - HIDDEN (no Apply button needed, live sync) */
.ar-sites-slidein-footer {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ar-sites-slidein-sidebar {
    width: 100%;
    right: -100%;
  }
}

/* END SITES SLIDE-IN SIDEBAR
   ============================================================================ */

/* ============================================================================
   MAGAZINE PAGE STYLES
   ============================================================================ */

/* Magazine Sticky Bar - Add shadow on scroll */
.ar-magazine-sticky-bar.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Category Menu (Horizontal) */
.ar-magazine-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.ar-category-link {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ar-category-link:hover {
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
}

.ar-category-link.active {
  background-color: #f5f5f5;
  cursor: default;
}

.ar-category-link.active:hover {
  background: #f5f5f5;
}

/* Magazine Hero Image */
.ar-magazine-hero-img img {
  transition: transform 0.3s ease;
}

.ar-magazine-hero-img:hover img {
  transform: scale(1.05);
}

/* Category Tags on Images */
.ar-category-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #98012e;
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
  z-index: 2;
}

/* Section Titles */
.ar-section-title {
  font-size: 24px;
  color: #333;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
}

/* See All Links */
.ar-see-all-link {
  color: #98012e;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.ar-see-all-link:hover {
  color: #7a0018;
  text-decoration: none;
}

.ar-arrow-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.ar-see-all-link:hover .ar-arrow-icon {
  transform: translateX(3px);
}

/* Magazine Author Info */
.widget-box-mag-author {
  font-size: 12px;
  color: #666;
  margin: 8px 0;
  font-style: italic;
}

/* Magazine Layout Spacing */
.mb-30 {
  margin-bottom: 30px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

/* Magazine Grid Responsive */
@media (max-width: 768px) {
  .ar-section-title {
    font-size: 20px;
  }
  
  .ar-category-tag {
    font-size: 11px;
    padding: 3px 6px;
  }
  
  .widget-box-mag-author {
    font-size: 11px;
  }
}

/* END MAGAZINE PAGE STYLES
   ============================================================================ */
