/* Theme Builder - Frontend Block Styles */
.tb-renderer { width: 100%; }

/* Section */
.tb-section { width: 100%; position: relative; }
.tb-container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }

/* Columns - Flexbox Row */
.tb-section > .tb-column,
.tb-section > .tb-container > .tb-column { display: none; }
.tb-section > .tb-container,
.tb-section > div:not(.tb-container) { display: flex; flex-wrap: wrap; }
.tb-section > .tb-container > .tb-column { display: block; }

/* Column */
.tb-column { flex: 1 1 0; min-height: 1px; position: relative; }

/* Heading */
.tb-heading { word-break: break-word; }
.tb-heading a { text-decoration: none; color: inherit; }

/* Text */
.tb-text { word-break: break-word; }
.tb-text p:last-child { margin-bottom: 0; }

/* Image */
.tb-image img { max-width: 100%; height: auto; display: inline-block; }
.tb-image-caption { margin-top: 8px; font-size: 14px; color: #6c757d; text-align: center; }

/* Button */
.tb-button { margin: 0; }
.tb-align-left { text-align: left; }
.tb-align-center { text-align: center; }
.tb-align-right { text-align: right; }
.tb-btn { transition: all 0.3s ease; line-height: 1.5; }
.tb-btn:hover { opacity: 0.85; }

/* Divider */
.tb-divider { clear: both; }

/* Spacer */
.tb-spacer { width: 100%; }

/* Icon */
.tb-icon { line-height: 1; }
.tb-icon a { color: inherit; text-decoration: none; }

/* Video */
.tb-video { position: relative; }
.tb-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.tb-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Gallery */
.tb-gallery-grid { display: grid; }
.tb-gallery-item { overflow: hidden; border-radius: 4px; }
.tb-gallery-item img { transition: transform 0.3s ease; width: 100%; height: auto; display: block; }
.tb-gallery-item:hover img { transform: scale(1.05); }

/* Code */
.tb-code pre { background: #f4f4f4; border: 1px solid #ddd; border-radius: 4px; padding: 15px; overflow-x: auto; }
.tb-code code { font-family: 'Courier New', monospace; font-size: 14px; }

/* Post Content */
.tb-content-format { line-height: 1.8; }
.tb-content-format p { margin-bottom: 1rem; }
.tb-content-format img { max-width: 100%; height: auto; }
.tb-content-format a { color: #007bff; }
.tb-drop-cap:first-letter { font-size: 3em; float: left; margin-right: 10px; line-height: 1; font-weight: bold; }

/* Post Meta */
.tb-post-meta { font-size: 14px; color: #6c757d; }
.tb-meta-sep { color: #ccc; }

/* Post Image */
.tb-post-image img { max-width: 100%; height: auto; border-radius: 4px; }

/* Site Logo */
.tb-site-logo img { vertical-align: middle; }

/* Nav Menu */
.tb-nav-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.tb-nav-list { list-style: none; margin: 0; padding: 0; }
.tb-nav-menu a { text-decoration: none; color: #333; padding: 5px 0; }
.tb-nav-menu a:hover { color: #007bff; }
.tb-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.tb-nav-toggle span { display: block; width: 25px; height: 3px; background: #333; margin: 5px 0; border-radius: 3px; }

/* Search Form */
.tb-search-form input[type="text"] { min-width: 200px; }
.tb-search-form button:hover { opacity: 0.9; }

/* Social Icons */
.tb-social-icon { transition: color 0.3s ease; }
.tb-social-icon:hover { opacity: 0.7; }

/* Recent Posts */
.tb-post-list { list-style: none; padding: 0; margin: 0; }
.tb-post-item { padding: 8px 0; border-bottom: 1px solid #eee; display: flex; flex-direction: column; }
.tb-post-item:last-child { border-bottom: none; }
.tb-post-date { font-size: 12px; color: #999; }
.tb-widget-title { font-size: 18px; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid #007bff; }

/* Category List */
.tb-cat-list { list-style: none; padding: 0; margin: 0; }
.tb-cat-item { padding: 6px 0; border-bottom: 1px solid #eee; }
.tb-cat-item:last-child { border-bottom: none; }
.tb-cat-count { color: #999; font-size: 13px; }

/* Tag Cloud */
.tb-tag-item { color: #555; transition: color 0.3s; }
.tb-tag-item:hover { color: #007bff; }

/* Author Box */
.tb-author-box { display: flex; align-items: center; gap: 20px; }
.tb-author-name { margin: 0 0 5px; font-size: 18px; }
.tb-author-bio { margin: 0; font-size: 14px; color: #666; }

/* Breadcrumb */
.tb-breadcrumb a { color: #007bff; text-decoration: none; }
.tb-breadcrumb a:hover { text-decoration: underline; }
.tb-breadcrumb-sep { margin: 0 8px; color: #ccc; }
.tb-breadcrumb-current { color: #6c757d; }

/* Comments Area */
.tb-comments { width: 100%; }
.tb-post-nav a { color: #007bff; text-decoration: none; }

/* Copyright */
.tb-copyright { font-size: 14px; color: #6c757d; }

/* Responsive - Tablet & Mobile */
@media (max-width: 1023px) {
    .tb-hide-tablet { display: none !important; }
    .tb-section > .tb-container { flex-direction: column; }
    .tb-column { width: 100% !important; flex: none !important; }
}

@media (max-width: 767px) {
    .tb-hide-mobile { display: none !important; }
    .tb-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .tb-nav-horizontal ul { flex-direction: column; gap: 0; }
    .tb-search-form form { width: 100%; }
    .tb-search-form input[type="text"] { min-width: 0; width: 100%; }
    .tb-nav-toggle { display: block; }
    .tb-nav-list { display: none; }
    .tb-nav-list.tb-nav-open { display: flex; flex-direction: column; }
}

/* Widget Area inside builder */
.tb-widget-area .widget { margin-bottom: 20px; }

/* Post Nav */
.tb-post-nav { clear: both; }
