/*
Theme Name: positivedp
Description: Modern news theme with beautiful photo sharing, built with Tailwind CSS
Version: 1.0.0
Author: positivedp
Text Domain: positivedp
*/

/* Icon Styles */
.ri {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ensure icons are properly sized */
.ri-sm {
    font-size: 0.875rem;
}

.ri-lg {
    font-size: 1.25rem;
}

.ri-xl {
    font-size: 1.5rem;
}

/* Tag cloud styles */
.tag-sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.tag-md {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.tag-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.tag-xl {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
}

/* Primary color classes */
.text-primary-600 {
    color: #3b82f6;
}

.text-primary-700 {
    color: #1d4ed8;
}

.bg-primary-100 {
    background-color: #dbeafe;
}

.border-primary-200 {
    border-color: #bfdbfe;
}

.hover\:text-primary-700:hover {
    color: #1d4ed8;
}

.hover\:bg-primary-100:hover {
    background-color: #dbeafe;
}

/* Basic primary class */
.bg-primary {
    background-color: #3b82f6;
}

.text-primary {
    color: #3b82f6;
}

.border-primary {
    border-color: #3b82f6;
}

.hover\:bg-primary:hover {
    background-color: #3b82f6;
}

.hover\:text-primary:hover {
    color: #3b82f6;
}

/* Line clamp utilities */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Transition utilities */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Group utilities */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:visible {
    visibility: visible;
}

.group:hover .group-hover\:text-white {
    color: white;
}

.group:focus-within .group-focus-within\:opacity-100 {
    opacity: 1;
}

.group:focus-within .group-focus-within\:visible {
    visibility: visible;
}

/* Transform utilities */
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.group:hover .group-hover\:-translate-x-1 {
    transform: translateX(-0.25rem);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(0.25rem);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Opacity utilities */
.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

/* Z-index utilities */
.z-50 {
    z-index: 50;
}

/* Position utilities */
.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.absolute {
    position: absolute;
}

.left-0 {
    left: 0;
}

.left-full {
    left: 100%;
}

.top-full {
    top: 100%;
}

/* Width utilities */
.min-w-\[180px\] {
    min-width: 180px;
}

/* Border radius utilities */
.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

/* Padding utilities */
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Margin utilities */
.ml-2 {
    margin-left: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.pl-2 {
    padding-left: 0.5rem;
}

.pl-5 {
    padding-left: 1.25rem;
}

/* Border utilities */
.border {
    border-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-l {
    border-left-width: 1px;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-blue-400 {
    border-color: #60a5fa;
}

/* Focus utilities */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:border-blue-400:focus {
    border-color: #60a5fa;
}

/* Text utilities */
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-white {
    color: white;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-700 {
    color: #374151;
}

.text-blue-700 {
    color: #1d4ed8;
}

.text-transparent {
    color: transparent;
}

/* Font utilities */
.font-bold {
    font-weight: 700;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

/* Background utilities */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-white {
    background-color: white;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-600 {
    --tw-gradient-from: #2563eb;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.to-purple-600 {
    --tw-gradient-to: #9333ea;
}

.bg-clip-text {
    background-clip: text;
}

/* Shadow utilities */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Overflow utilities */
.overflow-hidden {
    overflow: hidden;
}

/* Whitespace utilities */
.whitespace-nowrap {
    white-space: nowrap;
}

/* Flexbox utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-1 > * + * {
    margin-left: 0.25rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

/* Display utilities */
.hidden {
    display: none;
}

.lg\:flex {
    display: flex;
}

.md\:block {
    display: block;
}

.md\:hidden {
    display: none;
}

/* Width and height utilities */
.w-4 {
    width: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.h-4 {
    height: 1rem;
}

.h-6 {
    height: 1.5rem;
}

.p-2 {
    padding: 0.5rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

/* Hover utilities */
.hover\:bg-blue-50:hover {
    background-color: #eff6ff;
}

.hover\:text-blue-700:hover {
    color: #1d4ed8;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.h-44 {
    height: 11rem;
}

.object-cover {
    object-fit: cover;
}

.h-full {
    height: 100%;
}

.h-64 {
    height: 16rem;
}

/* Responsive utilities */
@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:h-full {
        height: 100%;
    }
    
    .md\:h-80 {
        height: 20rem;
    }
}

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }
    
    .lg\:hidden {
        display: none;
    }
}

/* Margin utilities */
.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-\[60vh\] {
    min-height: 60vh;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pb-8 {
    padding-bottom: 2rem;
}

/* Breadcrumb Styles */
.custom_theme-breadcrumbs {
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
}

.custom_theme-breadcrumbs ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom_theme-breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.custom_theme-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom_theme-breadcrumbs a:hover {
    color: #3b82f6;
}

.custom_theme-breadcrumbs .text-gray-900 {
    color: #111827;
    font-weight: 500;
}

.custom_theme-breadcrumbs .text-gray-400 {
    color: #9ca3af;
    margin: 0 0.5rem;
}