/* SheekoBox Theme - Main Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Clean, Professional Color Palette */
    --primary-color: #2C3E50;      /* Dark Blue */
    --secondary-color: #3498DB;    /* Bright Blue */
    --accent-color: #E74C3C;       /* Red */
    --success-color: #27AE60;      /* Green */
    --warning-color: #F39C12;      /* Orange */
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-section: #F5F6F7;
    --border-color: #E0E0E0;
    --shadow: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 8px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: normal;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Header */
.site-header {
    background: var(--bg-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    background: var(--secondary-color);
    padding: 15px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.site-title a {
    color: #FFFFFF;
    text-decoration: none;
}

.site-description {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search Form */
.header-search {
    width: 250px;
}

.search-form {
    display: flex;
    position: relative;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-family: var(--font-primary);
    background: rgba(255,255,255,0.9);
}

.search-form input[type="search"]:focus {
    outline: none;
    background: #FFFFFF;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    color: var(--secondary-color);
}

.search-form button:hover {
    color: var(--primary-color);
}

/* App Button */
.app-button {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.app-button:hover {
    background: #1A252F;
    color: #FFFFFF;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    background: var(--secondary-color);
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

#primary-menu li {
    position: relative;
}

#primary-menu a {
    display: block;
    padding: 12px 0;
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

#primary-menu a:hover,
#primary-menu .current-menu-item a {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Main Content Area - Account for fixed header */
.site-content {
    margin-top: 115px;
    min-height: 600px;
}

/* Hero Section with Background Image */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -115px;
    padding-top: 115px;
    background: #f0f0f0; /* Fallback background */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Age Categories */
.age-categories {
    background: var(--bg-section);
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.age-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    display: block;
    transition: box-shadow 0.2s ease;
}

.age-card:hover {
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.age-card h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.5rem;
}

/* Category Buttons */
.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-button {
    background: var(--bg-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-button:hover {
    background: var(--primary-color);
    color: var(--bg-color);
    text-decoration: none;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.story-card:hover {
    box-shadow: var(--shadow-hover);
}

.story-card-image {
    position: relative;
    padding-bottom: 60%;
    overflow: hidden;
    background: var(--bg-light);
}

.story-card-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.has-audio-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    color: var(--bg-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.story-card-content {
    padding: 20px;
}

.story-card-title {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.story-card-title a {
    color: var(--text-color);
    text-decoration: none;
}

.story-card-title a:hover {
    color: var(--secondary-color);
}

.story-card-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.age-badge {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.reading-time {
    color: var(--text-light);
}

.story-card-excerpt {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 500;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Featured Story */
.featured-story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.featured-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Highlighted Stories Section */
.highlighted-stories {
    background: var(--bg-section);
}

.highlighted-stories .featured-story-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
}

.highlighted-stories .featured-story-card:hover {
    box-shadow: var(--shadow-hover);
}

/* Audio Player */
.audio-player {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.audio-player h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-pause-btn {
    background: var(--secondary-color);
    color: var(--bg-color);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.play-pause-btn:hover {
    background: var(--primary-color);
}

.audio-progress {
    flex: 1;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #DDD;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
    width: 0;
}

.audio-time {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.download-btn {
    background: var(--success-color);
    color: var(--bg-color);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.download-btn:hover {
    background: #219A52;
}

/* Single Story */
.story-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.story-header {
    text-align: center;
    margin-bottom: 40px;
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-light);
}

.story-featured-image {
    margin-bottom: 40px;
    text-align: center;
}

.story-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.story-content {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* Center all images in story content */
.story-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.story-content .aligncenter {
    display: block;
    margin: 0 auto;
}

.story-content .alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.story-content .alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.story-content figure {
    margin: 20px 0;
    text-align: center;
}

.story-content figure img {
    display: block;
    margin: 0 auto;
}

.story-content figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Story Navigation */
.story-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-previous,
.nav-next {
    padding: 10px;
}

.nav-next {
    text-align: right;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #FFFFFF;
    margin-top: 80px;
}

.footer-widgets {
    padding: 60px 0 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border-radius: 4px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    background: var(--secondary-color);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.newsletter-form button:hover {
    background: #2980B9;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}

/* Archive Pages */
.archive-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Search Results */
.search-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.search-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.results-count {
    color: var(--text-light);
}

/* 404 Page */
.error-404 {
    padding: 80px 0;
    text-align: center;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.error-code {
    font-size: 6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

/* Pagination */
.pagination {
    margin: 60px 0;
    text-align: center;
}

.page-numbers {
    display: inline-flex;
    gap: 5px;
}

.page-numbers a,
.page-numbers span {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.page-numbers a:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.page-numbers .current {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: #FFFFFF;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.button:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    text-decoration: none;
}

/* Widgets */
.widget {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

/* WordPress Image Alignment Classes */
.wp-block-image {
    margin: 20px 0;
}

.wp-block-image figure {
    text-align: center;
}

.wp-block-image img,
.wp-block-image figure img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.wp-block-image.aligncenter,
.wp-block-image .aligncenter {
    text-align: center;
}

.wp-block-image.aligncenter img {
    margin: 0 auto;
}

.wp-block-image.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.wp-block-image.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.wp-block-image figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Image sizes */
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto;
}

/* Center block images */
.wp-block-image.is-style-default figure {
    text-align: center;
}

/* Audio Player positioning fix */
.audio-player {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

/* Utility Classes */
.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.back-to-top:hover {
    background: var(--secondary-color);
}

/* No animations for better performance */
* {
    animation: none !important;
    transition: none !important;
}

/* Only essential transitions */
a, .button, .story-card, .age-card, .category-button {
    transition: all 0.2s ease;
}





/* Additional Image Centering Styles */

/* Center all images by default in story content */
.story-single img,
.page-content img,
.story-content img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100%;
    height: auto;
}

/* Specific centering for different contexts */
.centered-image,
img.aligncenter,
.aligncenter img,
figure.aligncenter img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* WordPress block editor images */
.wp-block-image:not(.alignleft):not(.alignright) img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Story cards should not be affected */
.story-card img,
.featured-story-card img,
.highlighted-story-card img {
    display: block;
    margin: 0;
}

/* Override for floated images */
.alignleft,
img.alignleft {
    display: inline !important;
    float: left !important;
    margin: 0 20px 20px 0 !important;
}

.alignright,
img.alignright {
    display: inline !important;
    float: right !important;
    margin: 0 0 20px 20px !important;
}

/* Clear floats after content */
.story-content::after,
.page-content::after {
    content: "";
    display: table;
    clear: both;
}



/* Social Sharing */
.social-sharing {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 40px 0;
}

.social-sharing h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #FFFFFF;
    text-decoration: none;
}

.share-button svg {
    width: 20px;
    height: 20px;
}

/* Individual social colors on hover */
.share-facebook:hover {
    background: #1877f2;
}

.share-twitter:hover {
    background: #1da1f2;
}

.share-whatsapp:hover {
    background: #25d366;
}

.share-telegram:hover {
    background: #0088cc;
}

.share-copy:hover {
    background: var(--secondary-color);
}

/* Copy link tooltip */
.copy-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-color);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.share-copy.copied .copy-tooltip {
    opacity: 1;
}

/* Story Navigation */
.story-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-previous,
.nav-next {
    padding: 10px;
}

.nav-next {
    text-align: right;
}

/* Age Category Pages */
.age-category-header {
    background: var(--secondary-color);
    color: #FFFFFF;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 40px;
}

.age-category-header .page-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.age-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Age Features Section */
.age-features {
    background: var(--bg-section);
    padding: 60px 0;
    margin-top: 60px;
}

.age-features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}






/* ===================================
   Beginning of Author Name Styles
   =================================== */
/* ===================================
   AUTHOR NAME STYLES - CENTERED, NO ANIMATION
   =================================== */

/* Story title centered */
.story-header .story-title {
    text-align: center;
}

/* Author display in single posts - centered below title */
.story-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 20px 0;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
}

.story-author .author-by {
    font-style: italic;
    font-weight: 300;
    color: #999;
    font-size: 0.95em;
}

.story-author .author-name {
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .story-author {
        color: #aaa;
    }
    
    .story-author .author-by {
        color: #888;
    }
    
    .story-author .author-name {
        color: #e0e0e0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .story-author {
        font-size: 1rem;
        margin: 10px 0 15px 0;
    }
}

/* For SEO: Make author name more prominent for search engines */
.story-author .author-name {
    font-size: 1.05em;
}
/* ===================================
   End of Author Name Styles
   =================================== */