This commit is contained in:
Iliyan Angelov
2025-11-24 03:52:08 +02:00
parent dfcaebaf8c
commit 366f28677a
18241 changed files with 865352 additions and 567 deletions

View File

@@ -0,0 +1,766 @@
/* ====
--------- Enterprise About Page Styles ---------
==== */
// Enterprise About Page Layout
.enterprise-about-page {
font-family: var(--font-family-sans);
line-height: var(--leading-normal);
color: var(--secondary-700);
background: var(--white);
// Compact spacing
.container {
max-width: 1200px;
padding-left: 1.5rem;
padding-right: 1.5rem;
}
// Reduced section padding
section {
padding: 4rem 0;
@media (max-width: 768px) {
padding: 3rem 0;
}
@media (max-width: 480px) {
padding: 2.5rem 0;
}
}
}
// Enterprise About Banner
.about-banner {
background: linear-gradient(135deg,
var(--secondary-900) 0%,
var(--primary-800) 50%,
var(--secondary-800) 100%);
color: var(--white);
position: relative;
overflow: hidden;
padding: 4rem 0;
// Compact padding
@media (max-width: 768px) {
padding: 3rem 0;
}
@media (max-width: 480px) {
padding: 2.5rem 0;
}
// Enterprise background elements
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
z-index: 1;
}
.container {
position: relative;
z-index: 2;
}
&__content {
.enterprise-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--white);
padding: 0.5rem 1.25rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
text-transform: none;
letter-spacing: 0.05em;
margin-bottom: 1.5rem;
font-family: var(--font-family-sans);
}
h2 {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 700;
line-height: 1.2;
margin-bottom: 1.5rem;
color: var(--white);
font-family: var(--font-family-display);
letter-spacing: -0.02em;
}
p {
font-size: 1.125rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.9);
max-width: 600px;
margin-bottom: 2rem;
font-family: var(--font-family-sans);
}
.enterprise-stats {
margin-bottom: 2.5rem;
.row {
gap: 1rem;
}
.stat-item {
text-align: center;
padding: 1.5rem 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
position: relative;
cursor: pointer;
&:hover,
&.active {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-4px);
border-color: rgba(59, 130, 246, 0.3);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.stat-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
i {
font-size: 1.25rem;
color: var(--white);
}
}
h4 {
font-size: 1.5rem;
font-weight: 700;
color: var(--white);
margin-bottom: 0.5rem;
font-family: var(--font-family-display);
}
p {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
margin: 0;
text-transform: none;
letter-spacing: 0.05em;
}
}
}
.enterprise-cta {
.alter-btn {
background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
border: none;
color: var(--white);
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
font-family: var(--font-family-sans);
&:hover {
background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
color: var(--white);
}
i {
font-size: 1rem;
}
}
}
}
&__thumb {
.parallax-image-wrap {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
}
.enterprise-social {
position: absolute;
right: 2rem;
top: 50%;
transform: translateY(-50%);
z-index: 3;
@media (max-width: 768px) {
position: static;
transform: none;
display: flex;
justify-content: center;
margin-top: 2rem;
}
li {
margin-bottom: 1rem;
@media (max-width: 768px) {
margin-bottom: 0;
margin-right: 1rem;
&:last-child {
margin-right: 0;
}
}
a {
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
color: var(--white);
}
i {
font-size: 1.125rem;
}
}
}
}
}
// Enterprise Service Section
.tp-service {
background: var(--secondary-50);
padding: 4rem 0;
@media (max-width: 768px) {
padding: 3rem 0;
}
&__content {
.enterprise-badge {
display: inline-block;
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
color: var(--white);
padding: 0.5rem 1.25rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
text-transform: none;
letter-spacing: 0.05em;
margin-bottom: 1.5rem;
font-family: var(--font-family-sans);
}
h2 {
font-size: clamp(1.75rem, 3vw, 2.25rem);
font-weight: 700;
color: var(--secondary-800);
margin-bottom: 1.5rem;
font-family: var(--font-family-display);
letter-spacing: -0.01em;
}
p {
font-size: 1rem;
line-height: 1.6;
color: var(--secondary-600);
margin-bottom: 2rem;
font-family: var(--font-family-sans);
}
.enterprise-features {
margin-bottom: 2rem;
.feature-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
padding: 1.25rem;
background: var(--white);
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
border: 1px solid var(--secondary-200);
transition: all 0.3s ease;
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
border-color: var(--primary-200);
}
.feature-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
i {
font-size: 1.125rem;
color: var(--white);
}
}
.feature-content {
flex: 1;
h6 {
font-size: 1rem;
font-weight: 600;
color: var(--secondary-800);
margin-bottom: 0.5rem;
font-family: var(--font-family-display);
}
p {
font-size: 0.875rem;
color: var(--secondary-500);
margin: 0;
line-height: 1.5;
}
}
}
}
.process-steps {
margin-bottom: 2rem;
.process-step {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
padding: 1.25rem;
background: var(--white);
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
border: 1px solid var(--secondary-200);
transition: all 0.3s ease;
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
border-color: var(--primary-200);
}
.step-number {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 0.875rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-family-display);
}
.step-content {
flex: 1;
h6 {
font-size: 1rem;
font-weight: 600;
color: var(--secondary-800);
margin-bottom: 0.5rem;
font-family: var(--font-family-display);
}
p {
font-size: 0.875rem;
color: var(--secondary-500);
margin: 0;
line-height: 1.5;
}
}
}
}
.btn-line {
color: var(--primary-600);
text-decoration: none;
font-weight: 600;
font-size: 1rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
font-family: var(--font-family-sans);
&:hover {
color: var(--primary-700);
transform: translateX(4px);
}
&::after {
content: '';
transition: transform 0.3s ease;
}
&:hover::after {
transform: translateX(4px);
}
}
}
&__thumb {
.parallax-image-wrap {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
}
}
// Enterprise Gallery/Journey Section
.tp-gallery {
background: linear-gradient(135deg,
var(--secondary-900) 0%,
var(--primary-800) 50%,
var(--secondary-800) 100%);
color: var(--white);
position: relative;
overflow: hidden;
padding: 4rem 0;
@media (max-width: 768px) {
padding: 3rem 0;
}
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
z-index: 1;
}
.container {
position: relative;
z-index: 2;
}
&__content {
.enterprise-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--white);
padding: 0.5rem 1.25rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
text-transform: none;
letter-spacing: 0.05em;
margin-bottom: 1.5rem;
font-family: var(--font-family-sans);
}
h2 {
font-size: clamp(1.75rem, 3vw, 2.25rem);
font-weight: 700;
color: var(--white);
margin-bottom: 1.5rem;
font-family: var(--font-family-display);
letter-spacing: -0.01em;
}
p {
font-size: 1rem;
line-height: 1.6;
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
font-family: var(--font-family-sans);
}
.journey-milestones {
margin-bottom: 2rem;
.milestone-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
padding: 1.25rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.milestone-year {
.year-badge {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.875rem;
font-weight: 700;
color: var(--white);
font-family: var(--font-family-display);
}
}
.milestone-content {
flex: 1;
h6 {
font-size: 1rem;
font-weight: 600;
color: var(--white);
margin-bottom: 0.5rem;
font-family: var(--font-family-display);
}
p {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.8);
margin: 0;
line-height: 1.5;
}
}
}
}
.btn-line {
color: var(--white);
text-decoration: none;
font-weight: 600;
font-size: 1rem;
text-transform: none;
letter-spacing: 0.05em;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
font-family: var(--font-family-sans);
&:hover {
color: var(--primary-300);
transform: translateX(4px);
}
&::after {
content: '';
transition: transform 0.3s ease;
}
&:hover::after {
transform: translateX(4px);
}
}
}
&__thumb {
.parallax-image-wrap {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
}
}
// Responsive adjustments
@media (max-width: 768px) {
.enterprise-about-page {
.container {
padding-left: 1rem;
padding-right: 1rem;
}
}
.about-banner {
&__content {
text-align: center;
.enterprise-stats {
.row {
gap: 0.75rem;
}
.stat-item {
padding: 0.75rem;
h4 {
font-size: 1.25rem;
}
p {
font-size: 0.75rem;
}
}
}
}
}
.tp-service {
&__content {
.enterprise-features,
.process-steps {
.feature-item,
.process-step {
padding: 1rem;
gap: 0.75rem;
.feature-icon,
.step-number {
width: 36px;
height: 36px;
i {
font-size: 1rem;
}
}
.feature-content,
.step-content {
h6 {
font-size: 0.9rem;
}
p {
font-size: 0.8rem;
}
}
}
}
}
}
.tp-gallery {
&__content {
.journey-milestones {
.milestone-item {
padding: 1rem;
gap: 0.75rem;
.milestone-year {
.year-badge {
width: 36px;
height: 36px;
font-size: 0.75rem;
}
}
.milestone-content {
h6 {
font-size: 0.9rem;
}
p {
font-size: 0.8rem;
}
}
}
}
}
}
}
@media (max-width: 480px) {
.enterprise-about-page {
section {
padding: 2rem 0;
}
}
.about-banner {
padding: 2.5rem 0;
&__content {
h2 {
font-size: 1.75rem;
margin-bottom: 1rem;
}
p {
font-size: 1rem;
margin-bottom: 1.5rem;
}
.enterprise-stats {
margin-bottom: 2rem;
.stat-item {
padding: 0.75rem 0.5rem;
h4 {
font-size: 1.125rem;
}
p {
font-size: 0.7rem;
}
}
}
}
}
.tp-service,
.tp-gallery {
padding: 2.5rem 0;
&__content {
h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
}
p {
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
}
}
}

View File

@@ -0,0 +1,187 @@
// About page specific styles
.about-banner {
// Add any specific styles for the about banner here
}
// Enterprise styling for about page
.enterprise-badge {
.enterprise-badge-content {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 8px 16px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
text-transform: none;
letter-spacing: 0.5px;
display: inline-flex;
align-items: center;
gap: 8px;
i {
font-size: 14px;
}
}
}
.enterprise-stats {
.stat-item {
text-align: center;
padding: 20px 10px;
border-radius: 8px;
background: rgba(102, 126, 234, 0.05);
border: 1px solid rgba(102, 126, 234, 0.1);
transition: all 0.3s ease;
&:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}
h4 {
font-size: 2rem;
margin-bottom: 8px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
p {
font-size: 14px;
margin: 0;
}
}
}
.enterprise-features {
.feature-item {
padding: 15px;
border-radius: 8px;
background: rgba(102, 126, 234, 0.03);
border: 1px solid rgba(102, 126, 234, 0.1);
transition: all 0.3s ease;
&:hover {
background: rgba(102, 126, 234, 0.08);
transform: translateX(5px);
}
.feature-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
display: flex;
align-items: center;
justify-content: center;
i {
color: white;
font-size: 18px;
}
}
}
}
.process-steps {
.process-step {
display: flex;
align-items: flex-start;
gap: 15px;
.step-number {
width: 40px;
height: 40px;
border-radius: 50%;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
flex-shrink: 0;
}
.step-content {
h6 {
margin-bottom: 5px;
}
p {
font-size: 14px;
line-height: 1.4;
}
}
}
}
.journey-milestones {
.milestone-item {
padding: 15px;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
&:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateX(5px);
}
.year-badge {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 8px 12px;
border-radius: 20px;
font-weight: 700;
font-size: 12px;
min-width: 60px;
text-align: center;
}
}
}
.enterprise-social {
li {
a {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
&:hover {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-color: transparent;
transform: translateY(-3px);
}
}
}
}
// Responsive adjustments
@media (max-width: 768px) {
.enterprise-stats {
.stat-item {
margin-bottom: 20px;
}
}
.enterprise-features {
.feature-item {
margin-bottom: 15px;
}
}
.process-steps {
.process-step {
margin-bottom: 20px;
}
}
.journey-milestones {
.milestone-item {
margin-bottom: 15px;
}
}
}

View File

@@ -0,0 +1,692 @@
// Blog Single Page - Enhanced Enterprise Layout
// =======================================================
.blog-single-section {
padding-top: 140px;
background: #f8f9fa;
@media (max-width: 991px) {
padding-top: 120px;
}
// Loading and Error States
.loading-state,
.error-state {
min-height: 400px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
.spinner-border {
width: 3rem;
height: 3rem;
}
}
// Article Styling
.blog-single-article {
background: #ffffff;
border-top: 4px solid var(--color-primary);
// Article Header
.article-header {
padding: 50px 80px 40px;
border-bottom: 1px solid #e9ecef;
@media (max-width: 1199px) {
padding: 40px 60px 30px;
}
@media (max-width: 991px) {
padding: 30px 40px 25px;
}
@media (max-width: 767px) {
padding: 25px 20px 20px;
}
// Top Meta Bar
.article-top-meta {
.left-meta,
.right-meta {
@media (max-width: 767px) {
width: 100%;
justify-content: flex-start;
}
}
.category-badge {
display: inline-flex;
align-items: center;
padding: 8px 18px;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: #ffffff;
border-radius: 6px;
text-decoration: none;
font-size: 14px;
font-weight: 600;
transition: all 0.3s ease;
&:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
}
.meta-item {
font-size: 14px;
color: #6c757d;
font-weight: 500;
i {
color: var(--color-primary);
font-size: 14px;
}
}
}
// Title
.article-title {
font-size: 52px;
line-height: 1.2;
color: var(--color-secondary);
margin: 30px 0 0;
font-weight: 700;
@media (max-width: 1199px) {
font-size: 44px;
}
@media (max-width: 991px) {
font-size: 36px;
margin: 25px 0 0;
}
@media (max-width: 767px) {
font-size: 28px;
margin: 20px 0 0;
}
}
// Bottom Meta Bar
.article-bottom-meta {
border-top: 1px solid #e9ecef;
@media (max-width: 767px) {
flex-direction: column;
align-items: flex-start !important;
gap: 16px;
}
.author-meta {
.author-avatar {
.avatar-placeholder {
width: 48px;
height: 48px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 20px;
}
}
.author-info {
.author-label {
font-size: 12px;
color: #6c757d;
text-transform: none;
letter-spacing: 0.5px;
margin-bottom: 4px;
}
.author-name {
font-size: 16px;
font-weight: 600;
color: var(--color-secondary);
}
}
}
.article-tags {
@media (max-width: 767px) {
width: 100%;
}
.tag-badge {
padding: 6px 14px;
background: #f0f0f0;
color: var(--color-secondary);
border-radius: 20px;
text-decoration: none;
font-size: 13px;
font-weight: 600;
transition: all 0.3s ease;
&:hover {
background: var(--color-primary);
color: #ffffff;
transform: translateY(-2px);
}
}
}
}
}
// Featured Image
.article-featured-image {
position: relative;
overflow: hidden;
.image-wrapper {
position: relative;
overflow: hidden;
&::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
pointer-events: none;
}
img {
width: 100%;
height: auto;
display: block;
transition: transform 0.6s ease;
}
&:hover img {
transform: scale(1.03);
}
}
}
// Article Body
.article-body {
padding: 60px 80px;
@media (max-width: 1199px) {
padding: 50px 60px;
}
@media (max-width: 991px) {
padding: 40px 40px;
}
@media (max-width: 767px) {
padding: 30px 20px;
}
}
// Excerpt
.article-excerpt {
padding: 35px 45px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-left: 5px solid var(--color-primary);
margin-bottom: 50px;
@media (max-width: 767px) {
padding: 25px 20px;
margin-bottom: 35px;
}
.lead {
font-size: 22px;
line-height: 1.6;
color: var(--color-secondary);
margin: 0;
font-weight: 500;
@media (max-width: 767px) {
font-size: 18px;
}
}
}
// Article Content
.article-content {
font-size: 18px;
line-height: 1.8;
color: #333333;
@media (max-width: 767px) {
font-size: 16px;
}
> *:first-child {
margin-top: 0;
}
> *:last-child {
margin-bottom: 0;
}
h2 {
font-size: 36px;
font-weight: 700;
color: var(--color-secondary);
margin-top: 60px;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 3px solid var(--color-primary);
@media (max-width: 767px) {
font-size: 28px;
margin-top: 40px;
margin-bottom: 20px;
}
}
h3 {
font-size: 28px;
font-weight: 600;
color: var(--color-secondary);
margin-top: 45px;
margin-bottom: 20px;
@media (max-width: 767px) {
font-size: 24px;
margin-top: 35px;
}
}
h4 {
font-size: 22px;
font-weight: 600;
color: var(--color-secondary);
margin-top: 35px;
margin-bottom: 16px;
@media (max-width: 767px) {
font-size: 20px;
}
}
p {
margin-bottom: 22px;
color: #333333;
}
ul, ol {
margin: 28px 0;
padding-left: 35px;
li {
margin-bottom: 14px;
color: #333333;
&::marker {
color: var(--color-primary);
font-weight: 600;
}
}
}
blockquote {
margin: 40px 0;
padding: 30px 40px;
background: #f8f9fa;
border-left: 6px solid var(--color-primary);
font-style: italic;
color: var(--color-secondary);
font-size: 19px;
@media (max-width: 767px) {
padding: 25px 20px;
margin: 30px 0;
font-size: 17px;
}
p:last-child {
margin-bottom: 0;
}
}
code {
padding: 4px 10px;
background: #f5f5f5;
border: 1px solid #e0e0e0;
border-radius: 4px;
font-family: 'Courier New', monospace;
font-size: 15px;
color: #d63384;
}
pre {
margin: 30px 0;
padding: 25px;
background: #1e1e1e;
border-radius: 8px;
overflow-x: auto;
code {
padding: 0;
background: transparent;
border: none;
color: #f8f8f2;
font-size: 15px;
}
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
margin: 40px 0;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
a {
color: var(--color-primary);
text-decoration: underline;
font-weight: 500;
transition: color 0.3s ease;
&:hover {
color: var(--color-secondary);
}
}
table {
width: 100%;
margin: 30px 0;
border-collapse: collapse;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
thead {
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
color: #ffffff;
th {
padding: 18px;
text-align: left;
font-weight: 600;
}
}
tbody {
tr {
border-bottom: 1px solid #e0e0e0;
&:nth-child(even) {
background: #f8f9fa;
}
&:hover {
background: #e9ecef;
}
td {
padding: 16px 18px;
}
}
}
}
}
// Article Footer
.article-footer {
background: #f8f9fa;
padding: 50px 80px 60px;
@media (max-width: 1199px) {
padding: 40px 60px 50px;
}
@media (max-width: 991px) {
padding: 35px 40px 45px;
}
@media (max-width: 767px) {
padding: 30px 20px 35px;
}
}
// Share Section
.article-share {
margin-bottom: 50px;
@media (max-width: 767px) {
margin-bottom: 40px;
}
.share-container {
.share-title {
font-size: 20px;
color: var(--color-secondary);
font-weight: 600;
margin-bottom: 25px;
}
.social-share {
display: flex;
gap: 15px;
flex-wrap: wrap;
.share-btn {
min-width: 140px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
border-radius: 8px;
text-decoration: none;
font-size: 15px;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid transparent;
cursor: pointer;
i {
font-size: 18px;
}
span {
font-size: 14px;
}
&.share-linkedin {
background: #0077b5;
color: #ffffff;
&:hover {
background: #ffffff;
color: #0077b5;
border-color: #0077b5;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}
}
&.share-twitter {
background: #1da1f2;
color: #ffffff;
&:hover {
background: #ffffff;
color: #1da1f2;
border-color: #1da1f2;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(29, 161, 242, 0.3);
}
}
&.share-facebook {
background: #1877f2;
color: #ffffff;
&:hover {
background: #ffffff;
color: #1877f2;
border-color: #1877f2;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}
}
&.share-copy {
background: #6c757d;
color: #ffffff;
&:hover {
background: #ffffff;
color: #6c757d;
border-color: #6c757d;
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}
}
}
}
}
}
// Author Bio Section
.author-bio-section {
margin-bottom: 45px;
@media (max-width: 767px) {
margin-bottom: 35px;
}
.author-bio-card {
display: flex;
gap: 30px;
padding: 35px;
background: #ffffff;
border-radius: 12px;
border: 2px solid #e9ecef;
transition: all 0.3s ease;
@media (max-width: 767px) {
flex-direction: column;
gap: 20px;
padding: 25px;
text-align: center;
}
&:hover {
border-color: var(--color-primary);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.author-avatar-container {
flex-shrink: 0;
@media (max-width: 767px) {
display: flex;
justify-content: center;
}
.author-avatar-large {
width: 90px;
height: 90px;
border-radius: 50%;
background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 36px;
}
}
.author-bio-content {
flex: 1;
.bio-label {
font-size: 13px;
color: #6c757d;
text-transform: none;
letter-spacing: 0.5px;
margin-bottom: 8px;
font-weight: 600;
}
.author-name {
font-size: 22px;
color: var(--color-secondary);
font-weight: 600;
margin-bottom: 12px;
}
.author-bio-text {
font-size: 16px;
color: #6c757d;
line-height: 1.7;
margin: 0;
}
}
}
}
// Navigation
.article-navigation {
text-align: center;
.btn-back-insights {
display: inline-flex;
align-items: center;
padding: 14px 35px;
font-size: 16px;
font-weight: 600;
border: 2px solid var(--color-primary);
color: var(--color-primary);
background: #ffffff;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s ease;
&:hover {
background: var(--color-primary);
color: #ffffff;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
}
}
}
}
// Responsive Adjustments
@media (max-width: 767px) {
.blog-single-section {
.blog-single-article {
.article-header {
.article-top-meta {
flex-direction: column;
align-items: flex-start !important;
gap: 12px !important;
.left-meta,
.right-meta {
gap: 16px !important;
}
}
}
.article-share {
.share-container {
.social-share {
.share-btn {
min-width: calc(50% - 8px);
}
}
}
}
}
}
}

File diff suppressed because it is too large Load Diff