/* ============================================================
   Universal Noticias — Modern News Portal Styles
   Palette:
     Green gradient  : #05cc9b → #05cc9b  (header, nav, primary)
     Orange gradient : #e14f24 → #fb7f2a  (accents, buttons, highlights)
     Dark base       : #0f172a / #1e293b  (footer, contact, hero)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
  box-sizing: border-box !important;
}

/* ===== BASE ===== */
body {
  color: #1e293b;
  font-family: 'Inter', 'Roboto', sans-serif;
  line-height: 1.7;
  background: #f1f5f9;
  overflow-x: hidden;
}

.layout-padding {
  padding: 60px 0;
}

a {
  text-decoration: none !important;
  transition: all 0.3s ease;
}

/* ===== LOADER ===== */
.loader_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader_bg .loader img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
}

/* ===== HEADER ===== */
.site-header {
  position: relative;
  z-index: 1000;
}

.header {
  background: linear-gradient(135deg, #05cc9b 0%, #05cc9b 100%);
  padding: 0;
  box-shadow: 0 4px 20px rgba(5, 204, 155, 0.3);
}

.header .row {
  align-items: center;
}

.logo a {
  display: inline-block;
  padding: 10px 0;
}

.logo img {
  max-height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ===== SEARCH BAR ===== */
.header-search {
  position: relative;
  margin-top: 8px;
}

.header-search input {
  width: 100%;
  padding: 10px 45px 10px 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header-search input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.header-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-search button:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

/* ===== NAVIGATION ===== */
.header_information {
  background: transparent;
}

.navigation.navbar {
  padding: 0;
}

.navigation.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navigation.navbar-dark .navbar-nav .nav-link:hover,
.navigation.navbar-dark .navbar-nav .nav-item.active .nav-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.navigation.navbar-dark .navbar-nav .nav-item.active .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.navigation.navbar-dark .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 6px 10px;
}

.navigation.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== BREAKING NEWS TICKER ===== */
.breaking-ticker {
  background: linear-gradient(90deg, #e14f24 0%, #fb7f2a 100%);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(225, 79, 36, 0.3);
}

.breaking-ticker::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.ticker-content {
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 14px;
  font-weight: 500;
  padding-left: 100%;
}

.ticker-content span:first-child {
  background: rgba(0, 0, 0, 0.2);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  margin-right: 8px;
}

.ticker-content span {
  font-weight: 700;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 40px 0 50px;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(5, 204, 155, 0.08) 0%, transparent 60%);
}

.video-section {
  position: relative;
  z-index: 1;
}

.video-carousel-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-carousel-inner .embed-responsive {
  background: #000;
  min-height: 400px;
}

.carousel-indicators {
  margin-bottom: -30px;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-indicators .active {
  background: linear-gradient(90deg, #e14f24, #fb7f2a);
  width: 30px;
  border-radius: 5px;
}

.hero-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 400px;
  background: #0f172a;
  color: #fff;
}

.hero-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 300px;
  background: #1e293b;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* ===== CAROUSEL OPTIONS ===== */
.carousel-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-controls {
  display: flex;
  gap: 16px;
}

.carousel-control-prev.custom-control,
.carousel-control-next.custom-control {
  position: relative;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-control-prev.custom-control:hover,
.carousel-control-next.custom-control:hover {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(225, 79, 36, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.title-line {
  display: inline-block;
  width: 5px;
  height: 30px;
  background: linear-gradient(180deg, #e14f24, #fb7f2a);
  border-radius: 3px;
}

/* ===== SIDEBAR ===== */
.sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title i {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.sidebar-menu li {
  margin-bottom: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #475569;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  background: #fef2f0;
  color: #e14f24;
  transform: translateX(4px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(225, 79, 36, 0.3);
}

.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 20px 0;
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.trending-number {
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.trending-info {
  flex: 1;
  min-width: 0;
}

.trending-title {
  display: block;
  color: #1e293b;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trending-title:hover {
  color: #e14f24;
}

.trending-cat {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== NEWS CARDS ===== */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.news-card-img {
  width: 38%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.08);
}

.card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #05cc9b, #05cc9b);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(5, 204, 155, 0.4);
}

.video-embed {
  position: relative;
  height: 200px;
  background: #0f172a;
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  height: 100%;
  border: none;
}

.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a {
  color: inherit;
}

.card-title a:hover {
  background: linear-gradient(90deg, #e14f24, #fb7f2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.meta-date {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.meta-date i {
  margin-right: 4px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: none;
}

.badge-category {
  background: #ecfdf5;
  color: #05cc9b;
}

.badge-video {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff;
}

.badge-magaz, .magazine-card .card-category-badge {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa) !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.magazine-card {
  border: 2px solid rgba(139, 92, 246, 0.1);
}

.magazine-card:hover {
  border-color: #8b5cf6;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

#revistasContainer .card-img-wrapper {
  height: 240px;
}

.card-excerpt {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== BUTTONS ===== */
.btn-read-more,
.read_more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.btn-read-more:hover,
.read_more:hover {
  gap: 10px;
  filter: brightness(0.85);
}

.read_more {
  border: 2px solid transparent;
  border-image: linear-gradient(135deg, #e14f24, #fb7f2a) 1;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: #e14f24;
}

.read_more:hover {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff !important;
  border-image: none;
  border: 2px solid transparent;
}

/* ===== CONTENT SELECTOR ===== */
.content-selector {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.selector-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.selector-title i {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.custom-select {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #475569;
  transition: all 0.3s ease;
  background-color: #fff;
}

.custom-select:focus {
  border-color: #05cc9b;
  box-shadow: 0 0 0 3px rgba(5, 204, 155, 0.15);
}

.custom-date {
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #475569;
  transition: all 0.3s ease;
}

.custom-date:focus {
  border-color: #05cc9b;
  box-shadow: 0 0 0 3px rgba(5, 204, 155, 0.15);
}

.btn-outline-filter {
  border: 2px solid #e2e8f0;
  color: #64748b;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-outline-filter:hover {
  border-color: #05cc9b;
  color: #05cc9b;
  background: #ecfdf5;
}

.btn-filter-primary {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 79, 36, 0.3);
}

.btn-filter-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 79, 36, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(5, 204, 155, 0.08) 0%, transparent 50%);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-header h2 i {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 10px;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.form-row-custom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group-custom {
  width: 100%;
}

.main_form .contactus {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.main_form .contactus::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.main_form .contactus:focus {
  outline: none;
  border-color: #05cc9b;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(5, 204, 155, 0.2);
}

.main_form textarea.contactus {
  min-height: 120px;
  resize: vertical;
}

.main_form .send_btn {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(225, 79, 36, 0.4);
}

.main_form .send_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(225, 79, 36, 0.5);
}

.main_form .send_btn i {
  margin-right: 6px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  padding: 60px 0 0;
}

.footer .row.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 40px;
}

.footer h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-title-custom {
  position: relative;
  padding-bottom: 12px;
}

.footer-title-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e14f24, #fb7f2a);
  border-radius: 2px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #05cc9b;
  padding-left: 5px;
}

.footer-links a i {
  font-size: 12px;
}

/* Newsletter Form */
.footer_form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.footer_form .enter {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer_form .enter::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer_form .enter:focus {
  outline: none;
  border-color: #05cc9b;
  background: rgba(255, 255, 255, 0.1);
}

.footer_form .submit {
  background: linear-gradient(135deg, #e14f24, #fb7f2a);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.footer_form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(225, 79, 36, 0.4);
}

/* Visit Counter */
.visit-counter {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

/* Copyright */
.copyright {
  background: linear-gradient(90deg, #e14f24, #fb7f2a);
  padding: 16px 0;
  margin-top: 40px;
}

.copyright p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.copyright a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.copyright a:hover {
  color: #fff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .logo img {
    max-height: 55px;
  }

  .header-search {
    margin-top: 0;
  }

  .section-title {
    font-size: 24px;
  }

  .sidebar {
    margin-bottom: 30px;
    position: static;
  }

  .carousel-options {
    gap: 12px;
  }

  .carousel-control-prev.custom-control,
  .carousel-control-next.custom-control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .layout-padding {
    padding: 40px 0;
  }

  .hero-section {
    padding: 30px 0 40px;
  }

  .video-carousel-inner .embed-responsive {
    min-height: 250px;
  }

  .hero-loading {
    height: 250px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-header h2 {
    font-size: 26px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .content-selector {
    padding: 20px;
  }

  .news-card-body {
    padding: 16px;
  }

  .card-title {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .logo {
    text-align: center !important;
    padding-bottom: 10px;
  }

  .header-search input {
    padding: 8px 40px 8px 14px;
    font-size: 13px;
  }

  .ticker-content {
    font-size: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .sidebar {
    padding: 20px;
  }

  .sidebar-link {
    padding: 10px 12px;
    font-size: 13px;
  }
}
