/*
Theme Name: Daily Bangla Post
Theme URI: https://dailybanglapost.com
Author: Talukdar Saiful
Author URI: https://dailybanglapost.com
Description: একটি আধুনিক বাংলা নিউজ পোর্টাল থিম। Daily Bangla Post-এর জন্য তৈরি। Designer: Talukdar Saiful, Mobile: +8801911190999
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: banglapost
Tags: news, blog, responsive, bangla
*/

:root {
  --bp-primary: #c8102e;
  --bp-primary-dark: #9c0c23;
  --bp-bg: #f4f4f4;
  --bp-white: #ffffff;
  --bp-dark: #1a1a1a;
  --bp-text: #1a1a1a;
  --bp-border: #e0e0e0;
  --bp-font: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
  --bp-max-width: 1200px;
  --bp-radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--bp-font); background: var(--bp-bg); color: var(--bp-text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bp-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--bp-font); font-weight: 700; line-height: 1.3; }

/* Layout */
.bp-container { max-width: var(--bp-max-width); margin: 0 auto; padding: 0 16px; }
.bp-main-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; padding: 20px 0; }
@media (max-width: 1024px) { .bp-main-layout { grid-template-columns: 1fr; } }

/* Header */
#masthead { position: sticky; top: 0; z-index: 200; width: 100%; background: var(--bp-white); box-shadow: 0 1px 4px rgba(0,0,0,.1); border-bottom: 1px solid var(--bp-border); }
.bp-header-topbar { max-width: var(--bp-max-width); margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; }
.bp-header-left { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #555; }
.bp-hamburger { background: none; border: none; cursor: pointer; padding: 4px; display: flex; align-items: center; }
.bp-hamburger svg { width: 24px; height: 24px; }
.bp-header-date { display: none; }
@media (min-width: 768px) { .bp-header-date { display: inline; } }
.bp-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.bp-logo-bangla { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; color: var(--bp-dark); }
.bp-logo-post { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; background: var(--bp-primary); color: var(--bp-white); padding: 2px 8px; border-radius: 2px; }
.bp-header-right { display: flex; align-items: center; gap: 12px; }
.bp-lang-link { font-size: 13px; font-weight: 600; color: var(--bp-dark); display: none; }
@media (min-width: 768px) { .bp-lang-link { display: inline; } }
.bp-social-icons { display: none; gap: 6px; }
@media (min-width: 768px) { .bp-social-icons { display: flex; } }
.bp-social-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--bp-white); font-size: 11px; text-decoration: none; transition: opacity .2s; }
.bp-social-icon:hover { opacity: .85; color: var(--bp-white); }
.bp-social-fb { background: #1877f2; } .bp-social-tw { background: #1da1f2; } .bp-social-ig { background: #e1306c; } .bp-social-yt { background: #ff0000; }
.bp-epaper-btn { background: var(--bp-primary); color: var(--bp-white); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 20px; border: none; cursor: pointer; text-decoration: none; transition: background .2s; }
.bp-epaper-btn:hover { background: var(--bp-primary-dark); color: var(--bp-white); }
.bp-search-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--bp-primary); color: var(--bp-white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.bp-search-btn:hover { background: var(--bp-primary-dark); }
.bp-search-btn svg { width: 16px; height: 16px; }

/* Navbar */
.bp-navbar { background: var(--bp-primary); border-top: 1px solid rgba(255,255,255,.15); }
.bp-navbar-inner { max-width: var(--bp-max-width); margin: 0 auto; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.bp-navbar-inner::-webkit-scrollbar { display: none; }
.bp-nav-menu { display: flex; white-space: nowrap; }
.bp-nav-menu li a { display: block; color: var(--bp-white); font-size: 15px; font-weight: 700; padding: 10px 16px; border-right: 1px solid rgba(255,255,255,.2); transition: background .2s; text-decoration: none; }
.bp-nav-menu li a:hover, .bp-nav-menu li.current-menu-item > a { background: var(--bp-primary-dark); color: var(--bp-white); }

/* Drawer */
.bp-drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; }
.bp-drawer-overlay.active { display: block; }
.bp-drawer { position: fixed; top: 0; left: -280px; bottom: 0; width: 260px; background: var(--bp-white); z-index: 400; overflow-y: auto; box-shadow: 4px 0 16px rgba(0,0,0,.2); transition: left .3s ease; }
.bp-drawer.open { left: 0; }
.bp-drawer-header { background: var(--bp-primary); padding: 16px; display: flex; justify-content: space-between; align-items: center; color: var(--bp-white); }
.bp-drawer-header span { font-weight: 700; font-size: 18px; }
.bp-drawer-close { background: none; border: none; color: var(--bp-white); cursor: pointer; display: flex; }
.bp-drawer-close svg { width: 24px; height: 24px; }
.bp-drawer-nav a { display: block; padding: 12px 16px; border-bottom: 1px solid #f0f0f0; font-weight: 600; font-size: 15px; color: var(--bp-dark); text-decoration: none; }
.bp-drawer-nav a:hover { color: var(--bp-primary); }

/* Ticker */
.bp-ticker { border-top: 2px solid var(--bp-primary); border-bottom: 2px solid var(--bp-primary); background: var(--bp-white); display: flex; align-items: stretch; height: 40px; overflow: hidden; }
.bp-ticker-label { background: var(--bp-primary); color: var(--bp-white); padding: 0 16px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; font-weight: 700; font-size: 15px; position: relative; z-index: 1; }
.bp-ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--bp-white); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.bp-ticker-label::after { content:''; position:absolute; right:-10px; top:0; bottom:0; width:10px; background:var(--bp-primary); clip-path:polygon(0 0,0% 100%,100% 50%); }
.bp-ticker-scroll { flex: 1; overflow: hidden; display: flex; align-items: center; }
.bp-ticker-track { display: inline-block; white-space: nowrap; animation: marquee 35s linear infinite; font-size: 15px; color: var(--bp-dark); }
.bp-ticker-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Hero */
.bp-hero { display: grid; grid-template-columns: 1fr; gap: 20px; padding-top: 16px; margin-bottom: 24px; }
@media (min-width: 768px) { .bp-hero { grid-template-columns: 1.4fr 1fr 1fr; } }
.bp-hero-main { position: relative; border-radius: var(--bp-radius); overflow: hidden; cursor: pointer; }
.bp-hero-main-img { aspect-ratio: 16/10; position: relative; }
.bp-hero-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bp-hero-main:hover .bp-hero-main-img img { transform: scale(1.05); }
.bp-hero-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.4) 50%,transparent 100%); }
.bp-hero-main-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.bp-hero-main-cat { display: inline-block; background: var(--bp-primary); color: var(--bp-white); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }
.bp-hero-main-title { color: var(--bp-white); font-size: 22px; font-weight: 700; line-height: 1.35; }
.bp-hero-col { display: flex; flex-direction: column; gap: 16px; }
.bp-hero-item { display: flex; gap: 12px; text-decoration: none; color: var(--bp-dark); }
.bp-hero-item:hover .bp-hero-item-title { color: var(--bp-primary); }
.bp-hero-item-thumb { flex-shrink: 0; width: 110px; height: 82px; border-radius: var(--bp-radius); overflow: hidden; }
.bp-hero-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bp-hero-item:hover .bp-hero-item-thumb img { transform: scale(1.1); }
.bp-hero-item-title { font-size: 16px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.bp-all-news-btn { display: flex; align-items: center; justify-content: center; background: rgba(200,16,46,.1); color: var(--bp-primary); font-weight: 700; font-size: 14px; padding: 8px; border-radius: var(--bp-radius); text-decoration: none; transition: all .2s; margin-top: auto; }
.bp-all-news-btn:hover { background: var(--bp-primary); color: var(--bp-white); }

/* Section Header */
.bp-section-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--bp-border); margin-bottom: 16px; height: 40px; }
.bp-section-title-wrap { display: flex; align-items: center; height: 100%; }
.bp-section-bar { width: 5px; height: 100%; background: var(--bp-primary); margin-right: 10px; border-radius: 2px; }
.bp-section-title { font-size: 19px; font-weight: 700; color: var(--bp-dark); }
.bp-section-more { width: 40px; height: 100%; background: var(--bp-primary); color: var(--bp-white); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s; flex-shrink: 0; }
.bp-section-more:hover { background: var(--bp-primary-dark); color: var(--bp-white); }
.bp-section-more svg { width: 18px; height: 18px; }
.bp-section-header.dark { border-bottom-color: #444; }
.bp-section-header.dark .bp-section-title { color: var(--bp-white); }

/* Category Section */
.bp-category-section { margin-bottom: 32px; }
.bp-categories-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 768px) { .bp-categories-grid { grid-template-columns: repeat(3,1fr); gap: 24px; } }
.bp-cat-featured { display: block; text-decoration: none; color: var(--bp-dark); margin-bottom: 16px; }
.bp-cat-featured:hover .bp-cat-featured-title { color: var(--bp-primary); }
.bp-cat-featured-img { aspect-ratio: 16/10; border-radius: var(--bp-radius); overflow: hidden; margin-bottom: 10px; }
.bp-cat-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bp-cat-featured:hover .bp-cat-featured-img img { transform: scale(1.05); }
.bp-cat-featured-title { font-size: 18px; font-weight: 700; line-height: 1.4; transition: color .2s; }
.bp-cat-list { display: flex; flex-direction: column; }
.bp-cat-item { display: flex; gap: 12px; padding: 12px 0; border-top: 1px solid var(--bp-border); text-decoration: none; color: var(--bp-dark); }
.bp-cat-item:hover .bp-cat-item-title { color: var(--bp-primary); }
.bp-cat-item-thumb { flex-shrink: 0; width: 92px; height: 68px; border-radius: var(--bp-radius); overflow: hidden; }
.bp-cat-item-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bp-cat-item:hover .bp-cat-item-thumb img { transform: scale(1.1); }
.bp-cat-item-title { font-size: 15px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }

/* Area Widget */
.bp-area-widget { background: #eaf1ff; padding: 20px; border-radius: 6px; margin-bottom: 28px; }
.bp-area-widget-header { display: flex; align-items: center; margin-bottom: 14px; }
.bp-area-bar { width: 5px; height: 24px; background: var(--bp-primary); margin-right: 10px; border-radius: 2px; }
.bp-area-widget-title { font-size: 18px; font-weight: 700; }
.bp-area-selects { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 768px) { .bp-area-selects { flex-direction: row; } }
.bp-area-selects select { flex: 1; background: var(--bp-white); border: 1px solid #ccc; border-radius: 4px; padding: 10px 12px; font-size: 15px; font-family: var(--bp-font); outline: none; }
.bp-area-selects select:focus { border-color: var(--bp-primary); }
.bp-area-search-btn { background: #2563eb; color: var(--bp-white); border: none; border-radius: 4px; padding: 10px 20px; font-size: 15px; font-family: var(--bp-font); font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: background .2s; }
.bp-area-search-btn:hover { background: #1d4ed8; }

/* Video Section */
.bp-video-section { background: var(--bp-dark); padding: 24px; border-radius: var(--bp-radius); margin-bottom: 28px; color: var(--bp-white); }
.bp-video-grid { display: flex; flex-direction: column; gap: 16px; }
.bp-video-row-large { display: grid; grid-template-columns: 1fr; gap: 16px; }
.bp-video-row-small { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .bp-video-row-large { grid-template-columns: repeat(2,1fr); } .bp-video-row-small { grid-template-columns: repeat(3,1fr); } }
.bp-video-card { position: relative; display: block; border-radius: var(--bp-radius); overflow: hidden; text-decoration: none; color: var(--bp-white); }
.bp-video-card-large { aspect-ratio: 16/9; } .bp-video-card-small { aspect-ratio: 16/10; }
.bp-video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bp-video-card:hover img { transform: scale(1.05); }
.bp-video-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.9) 0%,rgba(0,0,0,.1) 60%,transparent 100%); }
.bp-video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.bp-video-play-btn span { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.2); backdrop-filter: blur(4px); border: 2px solid var(--bp-white); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.bp-video-card-small .bp-video-play-btn span { width: 40px; height: 40px; }
.bp-video-card:hover .bp-video-play-btn span { background: var(--bp-primary); border-color: var(--bp-primary); }
.bp-video-play-btn svg { width: 22px; height: 22px; fill: var(--bp-white); margin-left: 3px; }
.bp-video-card-small .bp-video-play-btn svg { width: 16px; height: 16px; }
.bp-video-card-title { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; font-size: 18px; font-weight: 700; line-height: 1.35; transition: color .2s; }
.bp-video-card-small .bp-video-card-title { font-size: 14px; font-weight: 600; padding: 12px; }
.bp-video-card:hover .bp-video-card-title { color: #ffcccc; }

/* Mini Sections */
.bp-mini-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; padding: 20px; background: var(--bp-white); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); }
@media (min-width: 768px) { .bp-mini-grid { grid-template-columns: repeat(3,1fr); } }
.bp-mini-section-header { display: flex; align-items: center; margin-bottom: 10px; }
.bp-mini-bar { width: 5px; height: 20px; background: var(--bp-primary); margin-right: 8px; border-radius: 2px; }
.bp-mini-title { font-size: 17px; font-weight: 700; }
.bp-mini-items { display: flex; flex-direction: column; }
.bp-mini-item { display: block; padding: 10px 0; font-size: 15px; font-weight: 500; color: #333; border-bottom: 1px solid var(--bp-border); text-decoration: none; line-height: 1.4; transition: color .2s; }
.bp-mini-item:last-child { border-bottom: none; }
.bp-mini-item:hover { color: var(--bp-primary); }

/* Sidebar */
.bp-sidebar { display: flex; flex-direction: column; gap: 28px; }
.bp-sidebar-widget { background: var(--bp-white); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); overflow: hidden; }
.bp-widget-tabs { display: flex; }
.bp-tab-btn { flex: 1; padding: 10px; font-size: 15px; font-weight: 700; font-family: var(--bp-font); border: none; cursor: pointer; transition: all .2s; background: #f0f0f0; color: #555; }
.bp-tab-btn.active { background: var(--bp-primary); color: var(--bp-white); }
.bp-tab-btn:hover:not(.active) { background: #e0e0e0; }
.bp-widget-body { padding: 16px; display: flex; flex-direction: column; }
.bp-widget-item { display: flex; gap: 10px; padding: 10px 0; border-top: 1px solid var(--bp-border); text-decoration: none; color: var(--bp-dark); }
.bp-widget-item:first-child { border-top: none; padding-top: 0; }
.bp-widget-item:hover .bp-widget-item-title { color: var(--bp-primary); }
.bp-widget-thumb { flex-shrink: 0; width: 80px; height: 60px; border-radius: 2px; overflow: hidden; }
.bp-widget-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bp-widget-item:hover .bp-widget-thumb img { transform: scale(1.1); }
.bp-widget-item-title { font-size: 14px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.bp-widget-more-btn { width: 100%; margin-top: 10px; background: rgba(200,16,46,.1); color: var(--bp-primary); font-size: 13px; font-weight: 700; font-family: var(--bp-font); padding: 8px; border: none; border-radius: var(--bp-radius); cursor: pointer; transition: all .2s; text-align: center; text-decoration: none; display: block; }
.bp-widget-more-btn:hover { background: var(--bp-primary); color: var(--bp-white); }
.bp-widget-head { background: var(--bp-primary); color: var(--bp-white); padding: 8px 16px; font-weight: 700; font-size: 15px; }

/* Ad Slots */
.bp-ad-slot { margin-bottom: 24px; }
.bp-ad-slot.bp-ad-placeholder { width: 100%; height: 90px; background: #e8e8e8; border: 1px dashed #bbb; display: flex; align-items: center; justify-content: center; color: #888; font-size: 14px; border-radius: var(--bp-radius); }
.bp-ad-slot.bp-ad-custom { text-align: center; }
.bp-mobile-ad { display: none !important; }
@media (max-width: 1024px) { .bp-mobile-ad { display: block !important; } }

/* Footer */
#colophon { background: var(--bp-dark); color: var(--bp-white); padding-top: 48px; padding-bottom: 24px; margin-top: 48px; border-top: 4px solid var(--bp-primary); }
.bp-footer-top { display: flex; flex-direction: column; align-items: center; gap: 28px; margin-bottom: 36px; }
@media (min-width: 768px) { .bp-footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.bp-footer-left { text-align: center; }
@media (min-width: 768px) { .bp-footer-left { text-align: left; } }
.bp-footer-editor { font-size: 13px; color: #aaa; margin-bottom: 6px; }
.bp-footer-logo { display: flex; align-items: center; gap: 4px; justify-content: center; margin-bottom: 8px; }
@media (min-width: 768px) { .bp-footer-logo { justify-content: flex-start; } }
.bp-footer-logo-bangla { font-size: 26px; font-weight: 800; color: var(--bp-white); }
.bp-footer-logo-post { font-size: 26px; font-weight: 800; background: var(--bp-primary); color: var(--bp-white); padding: 2px 8px; border-radius: 2px; }
.bp-footer-tagline { font-size: 13px; color: #aaa; }
.bp-footer-right { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
@media (min-width: 768px) { .bp-footer-right { align-items: flex-end; text-align: right; } }
.bp-footer-social { display: flex; gap: 8px; }
.bp-footer-social-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--bp-white); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 13px; transition: background .2s; }
.bp-footer-social-icon:hover { color: var(--bp-white); }
.bp-footer-social-icon.fb:hover { background: #1877f2; } .bp-footer-social-icon.tw:hover { background: #1da1f2; } .bp-footer-social-icon.ig:hover { background: #e1306c; } .bp-footer-social-icon.yt:hover { background: #ff0000; }
.bp-footer-links { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; font-size: 13px; color: #ccc; }
@media (min-width: 768px) { .bp-footer-links { justify-content: flex-end; } }
.bp-footer-links a { color: #ccc; text-decoration: none; transition: color .2s; }
.bp-footer-links a:hover { color: var(--bp-primary); }
.bp-footer-links .sep { color: #555; display: none; }
@media (min-width: 768px) { .bp-footer-links .sep { display: inline; } }
.bp-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; flex-direction: column; gap: 12px; font-size: 13px; color: #999; text-align: center; }
@media (min-width: 768px) { .bp-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.bp-footer-address p, .bp-footer-contact p { line-height: 1.6; }
.bp-footer-copy { margin-top: 4px; color: #777; }

/* Single Post */
.bp-single-layout { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 20px 0; }
@media (min-width: 1024px) { .bp-single-layout { grid-template-columns: 1fr 300px; } }
.bp-single-article { background: var(--bp-white); padding: 24px; border-radius: var(--bp-radius); }
.bp-post-category { display: inline-block; background: var(--bp-primary); color: var(--bp-white); font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 2px; margin-bottom: 12px; text-decoration: none; }
.bp-post-title { font-size: 26px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; }
.bp-post-meta { display: flex; gap: 16px; font-size: 13px; color: #777; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--bp-border); flex-wrap: wrap; }
.bp-post-featured-img { margin-bottom: 20px; border-radius: var(--bp-radius); overflow: hidden; }
.bp-post-content { font-size: 17px; line-height: 1.8; color: #333; }
.bp-post-content p { margin-bottom: 1.2em; }
.bp-post-content h2 { font-size: 22px; margin: 1.5em 0 .8em; }
.bp-post-content h3 { font-size: 19px; margin: 1.2em 0 .6em; }
.bp-post-content a { color: var(--bp-primary); text-decoration: underline; }
.bp-post-content blockquote { border-left: 4px solid var(--bp-primary); padding-left: 16px; margin: 1.5em 0; font-style: italic; color: #555; }

/* Utilities */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
