/* =====================================================
   INT News Footer — Frontend CSS
   Indian News Times | Version 2.0.0
   Style 1 = Dark Gold  |  Style 2 = Light / Foxiz
   ===================================================== */

/* ══════════════════════════════════════════════════════
   STYLE 1 — DARK GOLD (original)
   ══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
.int-footer-wrapper {
  --int-bg:         #0f0f0f;
  --int-bg2:        #161616;
  --int-gold:       #d4a017;
  --int-gold-light: #f0c040;
  --int-text:       #e8e8e8;
  --int-muted:      #888888;
  --int-border:     rgba(212, 160, 23, 0.15);
  --int-hover:      rgba(212, 160, 23, 0.08);
  --int-radius:     8px;
}

/* ── RESET WITHIN FOOTER ── */
.int-footer *,
.int-footer *::before,
.int-footer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.int-footer-wrapper {
  width: 100%;
  display: block;
  /* border/shadow: PHP se inline style inject hota hai — int_footer_inject_border_css() */
}

/* ── MAIN FOOTER ELEMENT ── */
.int-footer {
  background: var(--int-bg);
  font-family: 'DM Sans', sans-serif;
  color: var(--int-text);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  margin-top: 0 !important;
}

/* Top gold gradient line */
.int-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--int-gold) 20%,
    var(--int-gold-light) 50%,
    var(--int-gold) 80%,
    transparent 100%
  );
}

/* Background noise texture */
.int-footer-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

/* ── NEWSLETTER STRIP (Style 1) ── */
.int-footer .int-newsletter {
  background: linear-gradient(135deg, #1a1500 0%, #1e1a00 50%, #161200 100%);
  border-bottom: 1px solid var(--int-border);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.int-footer .int-newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.int-footer .int-newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--int-gold-light);
  font-weight: 700;
  line-height: 1.3;
}

.int-footer .int-newsletter-text p {
  font-size: 13px;
  color: var(--int-muted);
  margin-top: 4px;
}

.int-footer .int-newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 auto;
}

.int-footer .int-newsletter-form input[type="email"] {
  padding: 11px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--int-border);
  border-right: none;
  border-radius: var(--int-radius) 0 0 var(--int-radius);
  color: var(--int-text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  width: 240px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.int-footer .int-newsletter-form input[type="email"]:focus {
  border-color: var(--int-gold);
}

.int-footer .int-newsletter-form input[type="email"]::placeholder {
  color: var(--int-muted);
}

.int-footer .int-newsletter-form button {
  padding: 11px 22px;
  background: var(--int-gold);
  color: #0f0f0f;
  border: none;
  border-radius: 0 var(--int-radius) var(--int-radius) 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.int-footer .int-newsletter-form button:hover {
  background: var(--int-gold-light);
  transform: translateY(-1px);
}

.int-footer .int-newsletter-form button.int-success {
  background: #25d366;
  color: #fff;
}

/* ── MAIN 4-COLUMN GRID (Style 1) ── */
.int-footer .int-footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ── COLUMN HEADINGS (Style 1) ── */
.int-footer .int-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: 0.02em;
  display: block;
}

.int-footer .int-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--int-gold);
  border-radius: 2px;
}

/* ── BRAND COLUMN (Style 1) ── */
.int-footer .int-brand-logo a { display: inline-block; text-decoration: none; }
.int-footer .int-brand-logo img {
  height: auto; max-width: 180px; width: auto;
  filter: brightness(1.1); margin-bottom: 18px; display: block;
}
.int-footer .int-brand-desc {
  font-size: 13.5px; color: #999999; line-height: 1.75; margin-bottom: 22px;
}
.int-footer .int-contact-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--int-muted); margin-bottom: 10px;
  transition: color 0.25s ease; text-decoration: none;
}
.int-footer .int-contact-row svg { flex-shrink: 0; opacity: 0.7; }
.int-footer .int-contact-row a { color: var(--int-muted); text-decoration: none; transition: color 0.25s ease; }
.int-footer .int-contact-row:hover,
.int-footer .int-contact-row a:hover { color: var(--int-gold); }

/* ── LINK LISTS (Style 1) ── */
.int-footer .int-link-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.int-footer .int-link-list li a {
  display: flex; align-items: center; gap: 8px;
  color: #999999; text-decoration: none; font-size: 14px;
  padding: 6px 8px; border-radius: 5px;
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
  line-height: 1.4;
}
.int-footer .int-link-list li a:hover { color: var(--int-gold); background: var(--int-hover); padding-left: 14px; }
.int-footer .int-link-list li a svg { flex-shrink: 0; opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; transform: translateX(-4px); }
.int-footer .int-link-list li a:hover svg { opacity: 1; transform: translateX(0); }

/* ── SOCIAL COLUMN (Style 1) ── */
.int-footer .int-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25d366; color: #ffffff !important; text-decoration: none !important;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  padding: 12px 20px; border-radius: 50px; margin-bottom: 22px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%; text-align: center;
}
.int-footer .int-whatsapp-btn:hover {
  background: #20bd5a; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25); color: #ffffff !important;
}
.int-footer .int-social-label {
  font-size: 12px; color: var(--int-muted); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.08em; display: block;
}
.int-footer .int-social-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.int-footer .int-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--int-radius);
  text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.int-footer .int-social-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); opacity: 0; transition: opacity 0.3s ease;
}
.int-footer .int-social-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.int-footer .int-social-btn:hover::before { opacity: 1; }
.int-footer .int-social-btn svg { position: relative; z-index: 1; display: block; }

/* ── DIVIDER (Style 1) ── */
.int-footer .int-footer-divider {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  border: none; border-top: 1px solid var(--int-border);
  display: block; position: relative; z-index: 1;
}

/* ── BOTTOM BAR (Style 1) ── */
.int-footer .int-footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; position: relative; z-index: 1;
}
.int-footer .int-footer-bottom p { font-size: 12.5px; color: var(--int-muted); line-height: 1.5; }
.int-footer .int-footer-bottom p span,
.int-footer .int-footer-bottom p strong { color: var(--int-gold); font-weight: 500; }
.int-footer .int-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.int-footer .int-bottom-links a { font-size: 12px; color: var(--int-muted); text-decoration: none; transition: color 0.25s ease; }
.int-footer .int-bottom-links a:hover { color: var(--int-gold); }

/* ── RESPONSIVE Style 1 ── */
@media (max-width: 1024px) {
  .int-footer .int-footer-main { grid-template-columns: 1fr 1fr; gap: 36px; padding: 40px 20px 32px; }
}
@media (max-width: 640px) {
  .int-footer .int-footer-main { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 28px; }
  .int-footer .int-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .int-footer .int-newsletter-form { width: 100%; }
  .int-footer .int-newsletter-form input[type="email"] { width: 100%; flex: 1; }
  .int-footer .int-newsletter-text h3 { font-size: 18px; }
  .int-footer .int-footer-bottom { flex-direction: column; align-items: center; text-align: center; padding: 16px 20px; }
  .int-footer .int-bottom-links { justify-content: center; gap: 14px; }
  .int-footer .int-whatsapp-btn { font-size: 13px; padding: 11px 16px; }
}

/* ── GENERATEPRESS COMPATIBILITY ── */
.int-footer-wrapper .site-info,
.int-footer-wrapper .site-footer,
.int-footer-wrapper footer { background: transparent !important; padding: 0 !important; margin: 0 !important; border: none !important; }
body .int-footer-wrapper + .site-footer { display: none !important; }


/* ══════════════════════════════════════════════════════
   STYLE 2 — FOXIZ LIGHT (new)
   All classes scoped under .int-footer-s2-wrapper
   ══════════════════════════════════════════════════════ */

/* ── CSS VARIABLES (overridable from admin via inline style) ── */
.int-footer-s2-wrapper {
  --s2-bg:           #f9f9f9;
  --s2-accent:       #e8175d;
  --s2-accent-hover: #c91150;
  --s2-text-dark:    #111111;
  --s2-text-medium:  #444444;
  --s2-text-light:   #888888;
  --s2-border:       #e5e5e5;
  --s2-bottom-bg:    #f2f2f2;
  --s2-social-bg:    #eeeeee;
  --s2-badge-hot:    #eab308;
  --s2-badge-pink:   #f472b6;
  --s2-font:         'Nunito Sans', sans-serif;
  --s2-transition:   0.25s ease;
}

/* ── RESET ── */
.int-footer-s2-wrapper *,
.int-footer-s2-wrapper *::before,
.int-footer-s2-wrapper *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.int-footer-s2-wrapper {
  width: 100%;
  display: block;
  /* border/shadow: PHP se inline style inject hota hai — int_footer_inject_border_css() */
}

/* ── MAIN FOOTER ── */
.int-footer-s2 {
  background: var(--s2-bg);
  border-top: none;
  width: 100%;
  font-family: var(--s2-font);
  color: var(--s2-text-dark);
  display: block;
  margin-top: 0 !important;
}

/* ── TAGLINE SECTION ── */
.s2-tagline-section {
  padding: 48px 32px 36px;
  border-bottom: 1px solid var(--s2-border);
  max-width: 1200px;
  margin: 0 auto;
}

.s2-tagline-slash {
  font-size: 48px;
  font-weight: 800;
  color: var(--s2-accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  display: block;
  font-style: italic;
}

.s2-tagline-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--s2-text-dark);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 20px;
}

.s2-tagline-text .s2-highlight-w {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--s2-accent);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 3px;
  margin-right: 3px;
  vertical-align: middle;
  line-height: 1;
}

.s2-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--s2-text-medium);
  text-decoration: none;
  transition: color var(--s2-transition);
}
.s2-contact-email:hover { color: var(--s2-accent); }
.s2-contact-email svg { width: 16px; height: 16px; stroke: var(--s2-accent); flex-shrink: 0; }

/* ── MAIN 4-COLUMN GRID (Desktop) ── */
.s2-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid var(--s2-border);
}

/* About Us col */
.s2-about-col {
  padding: 36px 28px;
  border-right: 1px solid var(--s2-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Latest News col */
.s2-news-col {
  border-left: 1px solid var(--s2-border);
}
.s2-news-col .s2-latest-news-section {
  border-bottom: none;
  padding: 36px 24px;
}

/* ── LINKS SECTION — 2 cols inside grid ── */
.s2-links-section {
  padding: 36px 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  grid-column: span 2; /* Quick Links + Top Categories = 2 columns */
}

.s2-links-col {
  flex: 1;
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid var(--s2-border);
}
.s2-links-col:last-child { border-right: none; }

.s2-col-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--s2-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  display: block;
}

.s2-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s2-links-list li a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--s2-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: color var(--s2-transition);
  position: relative;
}
.s2-links-list li a:hover { color: var(--s2-accent); }
.s2-links-list li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--s2-accent);
  transition: width 0.22s ease;
}
.s2-links-list li a:hover::after { width: 100%; }

/* ── BADGES ── */
.s2-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  color: #fff; border-radius: 4px;
  padding: 2px 7px; letter-spacing: 0.3px;
  text-transform: uppercase; vertical-align: middle;
}
.s2-badge-new   { background: var(--s2-accent); }
.s2-badge-hot   { background: var(--s2-badge-hot); color: #222; }
.s2-badge-trend { background: var(--s2-badge-pink); }

/* ── LATEST NEWS SECTION ── */
.s2-latest-news-section {
  padding: 32px 32px 36px;
  border-bottom: 1px solid var(--s2-border);
  max-width: 1200px;
  margin: 0 auto;
}

.s2-latest-news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.s2-latest-news-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--s2-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.s2-latest-news-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--s2-accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.s2-live-dot {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: var(--s2-accent);
  text-transform: uppercase; letter-spacing: 0.4px;
}
.s2-live-dot::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px;
  background: var(--s2-accent); border-radius: 50%;
  animation: s2LivePulse 1.4s ease-in-out infinite;
}
@keyframes s2LivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Skeleton loader */
.s2-skeleton { display: flex; flex-direction: column; gap: 12px; }
.s2-skel-row { display: flex; align-items: center; gap: 10px; }
.s2-skel-num {
  width: 22px; height: 22px; border-radius: 4px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: s2Shimmer 1.4s infinite;
  flex-shrink: 0;
}
.s2-skel-line {
  height: 14px; border-radius: 6px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: s2Shimmer 1.4s infinite;
}
.s2-skel-w80 { width: 80%; }
.s2-skel-w60 { width: 60%; }
.s2-skel-w75 { width: 75%; }
.s2-skel-w55 { width: 55%; }
.s2-skel-w70 { width: 70%; }
@keyframes s2Shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.s2-error {
  display: none; font-size: 13px;
  color: var(--s2-text-light); padding: 12px 0;
}

/* News list */
.s2-lnews-list { list-style: none; display: flex; flex-direction: column; }
.s2-lnews-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--s2-border);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.s2-lnews-item:last-child { border-bottom: none; }
.s2-lnews-item.s2-visible { opacity: 1; transform: translateY(0); }
.s2-lnews-item a { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; color: inherit; }

.s2-lnews-num {
  min-width: 22px; height: 22px;
  background: var(--s2-accent); color: #fff;
  font-size: 10px; font-weight: 800;
  border-radius: 4px; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.s2-lnews-text {
  font-size: 13.5px; font-weight: 700;
  color: var(--s2-text-dark); line-height: 1.45;
  transition: color var(--s2-transition);
}
.s2-lnews-item a:hover .s2-lnews-text { color: var(--s2-accent); }

/* ── BOTTOM SECTION ── */
.s2-bottom-section {
  background: var(--s2-bottom-bg);
  padding: 28px 32px 20px;
  text-align: center;
}

.s2-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.s2-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.s2-logo-wrap .s2-logo-img {
  height: 44px; width: auto; display: block;
}

.s2-logo-icon-svg {
  width: 40px; height: 40px;
  display: block;
}

.s2-follow-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}

.s2-follow-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--s2-text-light);
}

.s2-social-icons { display: flex; gap: 8px; flex-wrap: wrap; }

.s2-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--s2-social-bg);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--s2-text-dark);
  transition: background var(--s2-transition), color var(--s2-transition), transform var(--s2-transition);
}
.s2-social-btn:hover {
  background: var(--s2-accent); color: #fff;
  transform: translateY(-2px);
}
.s2-social-btn svg { width: 17px; height: 17px; fill: currentColor; }

.s2-nav-links {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0; margin-bottom: 14px;
}
.s2-nav-links a {
  font-size: 13px; font-weight: 600;
  color: var(--s2-text-medium);
  padding: 0 12px;
  border-right: 1.5px solid var(--s2-border);
  line-height: 1; text-decoration: none;
  transition: color var(--s2-transition);
}
.s2-nav-links a:last-child { border-right: none; }
.s2-nav-links a:hover { color: var(--s2-accent); }

.s2-copyright {
  font-size: 12px;
  color: var(--s2-text-light);
  text-align: center;
  line-height: 1.6;
}

/* ── RESPONSIVE Style 2 ── */
@media (max-width: 1024px) {
  /* Tablet: 2x2 grid */
  .s2-main-grid {
    grid-template-columns: 1fr 1fr;
  }
  .s2-links-section {
    grid-column: span 1;
    flex-direction: column;
    padding: 28px 20px;
    border-right: none;
    border-bottom: 1px solid var(--s2-border);
  }
  .s2-links-col { padding: 0 0 20px 0; border-right: none; }
  .s2-links-col:last-child { padding-bottom: 0; }
  .s2-about-col { border-right: none; border-bottom: 1px solid var(--s2-border); padding: 28px 20px; }
  .s2-news-col { border-left: none; }
  .s2-news-col .s2-latest-news-section { padding: 28px 20px; }
  .s2-bottom-section { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 640px) {
  /* Mobile: single column stack */
  .s2-main-grid {
    grid-template-columns: 1fr;
  }
  .s2-links-section {
    grid-column: span 1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 24px 16px;
  }
  .s2-links-col { flex: 0 0 50%; padding: 0 12px 0 0; border-right: none; }
  .s2-about-col { padding: 28px 16px; }
  .s2-news-col .s2-latest-news-section { padding: 24px 16px 28px; }
  .s2-tagline-slash    { font-size: 36px; }
  .s2-tagline-text     { font-size: 15px; }
  .s2-bottom-section   { padding: 22px 16px 16px; }
  .s2-nav-links a      { font-size: 12px; padding: 0 8px; }
  .s2-brand-row        { flex-direction: column; align-items: center; }
  .s2-follow-row       { justify-content: center; }
}

/* ── GENERATEPRESS COMPATIBILITY (Style 2) ── */
.int-footer-s2-wrapper .site-info,
.int-footer-s2-wrapper .site-footer,
.int-footer-s2-wrapper footer { background: transparent !important; padding: 0 !important; margin: 0 !important; border: none !important; }
body .int-footer-s2-wrapper + .site-footer { display: none !important; }
