/* Minimal CSS for Ghost redirect theme */

/* Required Ghost classes */
.kg-width-wide {
    position: relative;
    width: 85vw;
    min-width: 85vw;
    margin: auto calc(50% - 50vw);
    transform: translateX(calc(50vw - 50%));
}

.kg-width-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Basic styling for redirect page */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 50px;
    margin: 0;
    background: #f5f5f5;
}

.redirect-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.redirect-container h1 {
    color: #333;
    margin-bottom: 20px;
}

.redirect-container p {
    color: #666;
    margin-bottom: 20px;
}

.redirect-container a {
    color: #007cba;
    text-decoration: none;
}

.redirect-container a:hover {
    text-decoration: underline;
}
