.dre-directory {
--dre-black: #0a0a0a;
--dre-gray-1: #1a1a1a;
--dre-gray-2: #333;
--dre-gray-3: #666;
--dre-gray-4: #999;
--dre-gray-5: #ccc;
--dre-gray-6: #e8e8e8;
--dre-gray-7: #f4f4f4;
--dre-white: #fff;
--dre-accent: #0057ff;
--dre-accent-light: #e8efff;
--dre-border: 1px solid #e8e8e8;
--dre-radius: 6px;
--dre-radius-lg: 12px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--dre-black);
font-size: 15px;
line-height: 1.6;
max-width: 1160px;
margin: 0 auto;
padding: 0 40px 40px;
box-sizing: border-box;
}
.dre-directory *,
.dre-directory *::before,
.dre-directory *::after {
box-sizing: border-box;
}
.dre-directory a {
text-decoration: none;
color: inherit;
} .dre-directory .search-section {
padding: 24px 0 8px;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.dre-directory .search-box {
display: flex;
background: var(--dre-white);
border: 1.5px solid var(--dre-black);
border-radius: 8px;
padding: 9px 14px;
align-items: center;
gap: 8px;
flex: 1;
min-width: 240px;
}
.dre-directory .search-box input {
flex: 1;
border: none;
outline: none;
font: inherit;
font-size: 14px;
color: var(--dre-black);
background: transparent;
}
.dre-directory .search-box input::placeholder {
color: var(--dre-gray-4);
}
.dre-directory .dre-sort-select {
padding: 9px 14px;
border: 1.5px solid var(--dre-gray-6);
border-radius: 8px;
font: inherit;
font-size: 13px;
background: var(--dre-white);
color: var(--dre-gray-2);
}
.dre-directory .search-meta {
padding: 6px 2px 18px;
font-size: 12px;
color: var(--dre-gray-3);
min-height: 18px;
}
.dre-directory .search-meta strong {
color: var(--dre-black);
font-weight: 600;
} .dre-directory .filter-section {
padding-bottom: 28px;
}
.dre-directory .filter-bar {
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.dre-directory .filter-tab {
background: var(--dre-white);
border: var(--dre-border);
border-radius: 100px;
padding: 6px 16px;
font-size: 13px;
font-weight: 500;
font: inherit;
color: var(--dre-gray-3) !important;
text-decoration: none !important;
transition: all .12s;
white-space: nowrap;
cursor: pointer;
}
.dre-directory .filter-tab:hover {
border-color: var(--dre-black);
color: var(--dre-black) !important;
text-decoration: none !important;
}
.dre-directory .filter-tab.active {
background: var(--dre-black);
color: var(--dre-white) !important;
border-color: var(--dre-black);
}
.dre-directory .filter-expand-btn {
background: var(--dre-gray-7);
border: var(--dre-border);
border-radius: 100px;
padding: 6px 14px;
font-size: 12px;
font-weight: 600;
letter-spacing: .04em;
color: var(--dre-gray-3);
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 5px;
}
.dre-directory .filter-expand-btn:hover {
border-color: var(--dre-black);
color: var(--dre-black);
}
.dre-directory .filter-expand-btn .chevron {
display: inline-block;
transition: transform .2s;
font-size: 10px;
}
.dre-directory .filter-expand-btn.open .chevron {
transform: rotate(180deg);
}
.dre-directory .filter-more {
display: none;
flex-wrap: wrap;
gap: 6px;
margin-top: 8px;
}
.dre-directory .filter-more.open {
display: flex;
}
.dre-directory .filter-divider {
width: 1px;
height: 20px;
background: var(--dre-gray-6);
margin: 0 2px;
flex-shrink: 0;
} .dre-directory .trending-section {
margin-bottom: 16px;
}
.dre-directory .section-label {
font-size: 11px;
font-weight: 600;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--dre-gray-4);
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 10px;
}
.dre-directory .section-label::after {
content: "";
flex: 1;
height: 1px;
background: var(--dre-gray-6);
} .dre-directory .featured-row {
margin-bottom: 32px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.dre-directory .tools-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 16px;
}
.dre-directory .tool-card {
background: var(--dre-white);
border: 1px solid var(--dre-gray-6);
border-radius: var(--dre-radius-lg);
padding: 20px 20px 16px;
display: flex;
flex-direction: column;
gap: 0;
transition: border-color .15s, box-shadow .15s, transform .15s;
position: relative;
overflow: hidden;
cursor: pointer;
}
.dre-directory .tool-card:hover {
border-color: var(--dre-gray-3);
box-shadow: 0 4px 20px rgba(0,0,0,.07);
transform: translateY(-2px);
}
.dre-directory .tool-card.is-featured {
border-color: #f5d87a;
background: #fffdf5;
}
.dre-directory .tc-head {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 14px;
}
.dre-directory .tc-icon {
width: 44px;
height: 44px;
border-radius: 10px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700;
overflow: hidden;
background: var(--dre-gray-7);
}
.dre-directory .tc-icon-img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 6px;
}
.dre-directory .tc-title-wrap {
flex: 1;
min-width: 0;
}
.dre-directory .tc-name {
font-size: 16px;
font-weight: 700;
letter-spacing: -.1px;
line-height: 1.25;
overflow-wrap: anywhere;
}
.dre-directory a.tc-name.tc-profile-link,
.dre-directory a.tc-name.tc-profile-link:visited {
color: var(--dre-black) !important;
text-decoration: none !important;
}
.dre-directory a.tc-name.tc-profile-link:hover,
.dre-directory a.tc-name.tc-profile-link:focus {
color: var(--dre-black) !important;
text-decoration: none !important;
}
.dre-directory .tc-cat {
font-size: 11px;
color: var(--dre-gray-4);
text-transform: uppercase;
letter-spacing: .07em;
font-weight: 500;
margin-top: 2px;
}
.dre-directory .tc-badge-wrap {
margin-left: auto;
flex-shrink: 0;
}
.dre-directory .tc-desc {
font-size: 13.5px;
color: var(--dre-gray-2);
font-weight: 400;
line-height: 1.55;
margin: 0 0 14px;
}
.dre-directory .tc-verdict {
padding-top: 12px;
border-top: 1px solid var(--dre-gray-6);
margin-top: auto;
}
.dre-directory .verdict-label {
font-size: 10px;
font-weight: 600;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--dre-gray-4);
margin-bottom: 6px;
}
.dre-directory .verdict-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
padding-bottom: 8px;
border-bottom: 1px solid var(--dre-gray-6);
}
.dre-directory .verdict-stars {
color: #00a86b;
font-size: 14px;
letter-spacing: 1px;
}
.dre-directory .verdict-stars.is-empty {
color: var(--dre-gray-5);
}
.dre-directory .verdict-review {
font-size: 11px;
font-weight: 600;
color: var(--dre-accent);
letter-spacing: .02em;
transition: opacity .12s;
white-space: nowrap;
}
.dre-directory .verdict-review:hover {
opacity: .7;
}
.dre-directory .tc-bottom-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
padding-top: 10px;
}
.dre-directory .tc-price-chip {
display: inline-flex;
align-items: center;
gap: 5px;
font-weight: 600;
color: var(--dre-black);
white-space: nowrap;
}
.dre-directory .price-icon {
font-size: 12px;
line-height: 1;
color: var(--dre-gray-3);
}
.dre-directory .tc-visit-inline {
font-size: 11px;
font-weight: 600;
color: var(--dre-white);
background: var(--dre-black);
border: none;
border-radius: var(--dre-radius);
padding: 6px 14px;
transition: opacity .12s;
white-space: nowrap;
}
.dre-directory .tc-visit-inline:hover {
opacity: .75;
} .dre-directory .no-results,
.dre-directory .dre-loading {
text-align: center;
padding: 48px;
color: var(--dre-gray-4);
font-size: 14px;
}
@media (max-width: 960px) {
.dre-directory {
padding-left: 20px;
padding-right: 20px;
}
.dre-directory .featured-row {
grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
.dre-directory .tools-grid,
.dre-directory .featured-row {
grid-template-columns: 1fr;
}
.dre-directory .search-section {
flex-direction: column;
align-items: stretch;
}
} .dre-directory .dre-stack-builder {
padding: 24px 0 8px;
}
.dre-directory .dre-stack-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 10px;
align-items: center;
}
.dre-directory .dre-stack-select {
padding: 10px 14px;
border: 1.5px solid var(--dre-gray-6);
border-radius: 8px;
font: inherit;
font-size: 13px;
background: var(--dre-white);
color: var(--dre-gray-2);
}
.dre-directory .btn-primary {
font: inherit;
font-size: 14px;
font-weight: 600;
color: #fff;
padding: 11px 20px;
border-radius: var(--dre-radius);
border: none;
background: var(--dre-black);
transition: opacity .12s;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.dre-directory .btn-primary:hover {
opacity: .8;
}
.dre-directory .btn-back {
font: inherit;
font-size: 13px;
font-weight: 500;
color: var(--dre-gray-3);
padding: 8px 14px;
border-radius: var(--dre-radius);
border: var(--dre-border);
background: var(--dre-white);
cursor: pointer;
transition: all .12s;
}
.dre-directory .btn-back:hover {
border-color: var(--dre-gray-2);
color: var(--dre-black);
}
.dre-directory .dre-stack-result {
margin-top: 16px;
border-top: 1px solid var(--dre-gray-6);
padding-top: 16px;
}
.dre-directory .dre-stack-empty {
font-size: 13px;
color: var(--dre-gray-4);
margin: 0;
}
.dre-directory .dre-stack-picks {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 12px;
}
.dre-directory .dre-stack-pick {
border: 1px solid var(--dre-gray-6);
border-radius: var(--dre-radius-lg);
padding: 14px 16px;
background: var(--dre-gray-7);
}
.dre-directory .dre-stack-pick-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--dre-gray-4);
margin-bottom: 8px;
font-weight: 600;
}
.dre-directory .dre-stack-pick-name {
font-weight: 700;
font-size: 15px;
color: var(--dre-black);
margin-bottom: 4px;
}
.dre-directory .dre-stack-pick-note {
font-size: 13px;
color: var(--dre-gray-3);
line-height: 1.5;
margin-bottom: 12px;
}
.dre-directory .dre-stack-pick-actions {
display: flex;
gap: 8px;
flex-wrap: wrap;
} .dre-directory .tc-compare-wrap {
position: absolute;
top: 14px;
right: 14px;
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 11px;
font-weight: 600;
color: var(--dre-gray-3);
background: rgba(255,255,255,.92);
border: 1px solid var(--dre-gray-6);
border-radius: 100px;
padding: 4px 10px;
cursor: pointer;
z-index: 2;
}
.dre-directory .tc-compare-wrap:hover {
border-color: var(--dre-gray-3);
color: var(--dre-black);
}
.dre-directory .tc-compare-checkbox {
margin: 0;
accent-color: var(--dre-black);
cursor: pointer;
} .dre-compare-bar {
position: fixed;
left: 0;
right: 0;
bottom: 0;
z-index: 99998;
background: #0a0a0a;
color: #fff;
padding: 14px 24px;
box-shadow: 0 -8px 24px rgba(0,0,0,.15);
}
.dre-compare-bar[hidden] {
display: none;
}
.dre-compare-bar-inner {
max-width: 1160px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 16px;
flex-wrap: wrap;
}
.dre-compare-bar-label {
font-size: 13px;
font-weight: 600;
white-space: nowrap;
}
.dre-compare-bar-chips {
display: flex;
gap: 8px;
flex-wrap: wrap;
flex: 1;
}
.dre-compare-chip {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(255,255,255,.12);
border-radius: 100px;
padding: 5px 6px 5px 12px;
font-size: 12px;
}
.dre-compare-chip-remove {
background: none;
border: none;
color: #fff;
cursor: pointer;
font-size: 16px;
line-height: 1;
padding: 0 4px;
opacity: .7;
}
.dre-compare-chip-remove:hover {
opacity: 1;
}
.dre-compare-bar .btn-primary {
background: #fff;
color: #0a0a0a;
}
.dre-compare-bar .btn-primary:disabled {
opacity: .4;
cursor: not-allowed;
}
.dre-compare-bar .btn-back {
background: transparent;
border-color: rgba(255,255,255,.3);
color: #fff;
}
.dre-compare-bar .btn-back:hover {
border-color: #fff;
color: #fff;
} .dre-modal {
position: fixed;
inset: 0;
background: rgba(10,10,10,.55);
z-index: 100002;
display: flex;
align-items: flex-start;
justify-content: center;
padding: 60px 20px;
overflow-y: auto;
}
.dre-modal[hidden] {
display: none;
}
.dre-modal-box {
background: #fff;
border-radius: var(--dre-radius-lg, 12px);
padding: 32px;
width: 100%;
max-width: 640px;
position: relative;
}
.dre-modal-close {
position: absolute;
top: 16px;
right: 20px;
font-size: 24px;
line-height: 1;
color: #999;
cursor: pointer;
}
.dre-modal-close:hover {
color: #0a0a0a;
}
.dre-modal-box h2 {
font-size: 22px;
font-weight: 800;
margin: 0 0 6px;
}
.dre-modal-sub {
font-size: 13px;
color: #666;
margin: 0 0 20px;
}
.dre-modal-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 16px;
}
.dre-mf {
margin-bottom: 14px;
}
.dre-mf-full {
grid-column: 1 / -1;
}
.dre-mf label {
display: block;
font-size: 13px;
font-weight: 600;
margin-bottom: 5px;
color: #333;
}
.dre-mf input,
.dre-mf textarea,
.dre-mf select {
width: 100%;
padding: 10px 12px;
border: 1px solid #ccc;
border-radius: 6px;
font: inherit;
font-size: 14px;
box-sizing: border-box;
}
.dre-mf textarea {
resize: vertical;
min-height: 70px;
}
.dre-modal-premium-options {
margin: 10px 0 18px;
padding: 18px;
border: 1px solid #e3e3e3;
border-radius: 10px;
background: #fafafa;
}
.dre-modal-premium-header {
margin-bottom: 14px;
}
.dre-modal-premium-options h3 {
margin: 0 0 5px;
font-family: "PT Serif", Georgia, serif;
font-size: 20px;
line-height: 1.25;
font-weight: 700;
color: #111;
}
.dre-modal-premium-intro {
margin: 0;
font-size: 13px;
line-height: 1.55;
color: #666;
}
.dre-modal-premium-cards {
display: grid;
grid-template-columns: 1fr;
gap: 10px;
}
.dre-modal-featured-box {
position: relative;
border: 1.5px solid #e1bd55;
border-radius: 8px;
padding: 18px 16px 16px;
background: #fffaf0;
transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.dre-modal-featured-box:hover {
transform: translateY(-1px);
box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.dre-modal-bundle-box {
border: 2px solid #e85554;
background: #fff7f7;
}
.dre-modal-featured-box:has(input:checked) {
box-shadow: 0 0 0 3px rgba(225,189,85,.22);
}
.dre-modal-bundle-box:has(input:checked) {
box-shadow: 0 0 0 3px rgba(232,85,84,.16);
}
.dre-modal-offer-badge {
display: inline-block;
margin: 0 0 10px 34px;
padding: 4px 8px;
border-radius: 999px;
font-size: 9px;
line-height: 1.2;
font-weight: 800;
letter-spacing: .8px;
text-transform: uppercase;
}
.dre-modal-offer-badge--featured {
background: #f6e7ae;
color: #745a00;
}
.dre-modal-offer-badge--bundle {
background: #e85554;
color: #fff;
}
.dre-modal-featured-box label {
display: flex;
align-items: flex-start;
gap: 10px;
cursor: pointer;
}
.dre-modal-featured-box input[type="checkbox"] {
margin-top: 2px;
accent-color: #111;
}
.dre-modal-bundle-box input[type="checkbox"] {
accent-color: #e85554;
}
.dre-modal-featured-label {
display: block;
font-size: 14px;
line-height: 1.4;
font-weight: 800;
color: #0a0a0a;
}
.dre-modal-featured-sub {
font-size: 12px;
color: #5f5f5f;
font-weight: 400;
margin: 4px 0 0;
line-height: 1.55;
}
.dre-modal-standard-note {
margin: 11px 0 0;
font-size: 11px;
line-height: 1.45;
color: #777;
}
.dre-modal-actions {
display: flex;
gap: 10px;
margin-top: 6px;
}
.dre-btn-submit,
.dre-btn-cancel {
flex: 1;
padding: 11px;
border-radius: 6px;
font: inherit;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border: none;
}
.dre-btn-submit {
background: #0a0a0a;
color: #fff;
}
.dre-btn-cancel {
background: #f4f4f4;
color: #0a0a0a;
border: 1px solid #e8e8e8;
} .dre-compare-modal-box {
max-width: 900px;
}
.dre-compare-table-wrap {
overflow-x: auto;
}
.dre-compare-table {
border-collapse: collapse;
width: 100%;
font-size: 13px;
}
.dre-compare-table th,
.dre-compare-table td {
border: 1px solid #e8e8e8;
padding: 10px 14px;
text-align: left;
vertical-align: top;
}
.dre-compare-table th:first-child {
background: #f9f9f9;
font-weight: 600;
white-space: nowrap;
}
.dre-compare-tool-head {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.dre-compare-tool-head img {
width: 32px;
height: 32px;
object-fit: contain;
border-radius: 6px;
}
.dre-compare-tool-name {
font-weight: 700;
}
.dre-compare-list {
margin: 0;
padding-left: 16px;
}
@media (max-width: 800px) {
.dre-modal-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
.dre-compare-bar-inner {
flex-direction: column;
align-items: stretch;
}
} .dre-directory{
width:100vw;
max-width:100vw;
margin-left:calc(50% - 50vw);
margin-right:calc(50% - 50vw);
padding:0 clamp(20px,4vw,64px) 56px;
background:#fff;
}
.dre-directory .dre-hero{padding:52px 0 36px;max-width:760px}
.dre-directory .dre-hero h1{font-size:clamp(44px,6vw,76px);font-weight:800;letter-spacing:-2px;line-height:.98;margin:0 0 18px}
.dre-directory .dre-hero>p{font-size:17px;line-height:1.7;color:var(--dre-gray-2);max-width:620px;margin:0 0 24px}
.dre-directory .dre-hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.dre-directory .dre-linkedin-button{background:#0a66c2}
.dre-directory .dre-search-row{display:flex;align-items:center;gap:12px;padding:12px 0 8px}
.dre-directory .dre-search-row .search-box{flex:1}
.dre-directory .dre-controls-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:4px 0 30px}
.dre-directory .dre-controls-row .filter-bar{flex:1;min-width:0}
.dre-directory .dre-controls-row .dre-sort-select{flex:none}
.dre-directory .tc-who{font-size:12px;color:var(--dre-gray-3);padding:10px 0;border-top:1px solid var(--dre-gray-6);margin-top:2px}
.dre-directory .tc-who strong{color:var(--dre-gray-1)}
.dre-directory .tc-card-actions{display:flex;align-items:center;justify-content:flex-end;gap:7px;flex-wrap:wrap}
.dre-directory .tc-compare-button,.dre-directory .tc-share-button{font:inherit;font-size:11px;font-weight:600;border:1px solid var(--dre-gray-6);background:#fff;color:var(--dre-gray-3);border-radius:6px;padding:5px 8px;cursor:pointer;line-height:1.2}
.dre-directory .tc-compare-button:hover,.dre-directory .tc-share-button:hover{border-color:var(--dre-black);color:var(--dre-black)}
.dre-directory .tc-compare-button.is-selected{background:var(--dre-black);border-color:var(--dre-black);color:#fff}
.dre-directory .tc-share-button{padding:5px 7px}
.dre-directory .tc-visit-inline.is-disabled{pointer-events:none;opacity:.5}
.dre-directory .tc-bottom-row{align-items:flex-end}
.dre-directory .dre-stack-help{font-size:13px;color:var(--dre-gray-3);margin:-5px 0 12px}
.dre-directory .dre-stack-goals{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:12px}
.dre-directory .dre-stack-goal-option{display:inline-flex;align-items:center;gap:7px;border:1px solid var(--dre-gray-6);border-radius:100px;padding:7px 12px;font-size:12px;cursor:pointer;background:#fff}
.dre-directory .dre-stack-goal-option:has(input:checked){background:var(--dre-black);border-color:var(--dre-black);color:#fff}
.dre-directory .dre-stack-goal-option input{margin:0;accent-color:#fff}
.dre-compare-list{list-style:none!important;padding:0!important;margin:0!important;display:flex;flex-direction:column;gap:7px}
.dre-compare-list li{position:relative;padding-left:20px;line-height:1.45}
.dre-compare-list-pros li:before{content:"✓";position:absolute;left:0;color:#00a86b;font-weight:700}
.dre-compare-list-cons li:before{content:"✕";position:absolute;left:0;color:#c0392b;font-weight:700}
.dre-compare-list-neutral li:before{content:"•";position:absolute;left:4px;color:#666}
.dre-compare-stars{color:#00a86b;letter-spacing:1px}
.dre-directory [hidden],.dre-modal[hidden],.dre-compare-bar[hidden]{display:none!important}
.dre-toast-wrap{position:fixed;top:72px;right:20px;z-index:100100;display:flex;flex-direction:column;gap:10px}
.dre-toast{min-width:260px;max-width:420px;padding:12px 14px;border-radius:9px;background:#fff;border:1px solid #ddd;box-shadow:0 10px 30px rgba(0,0,0,.1);transform:translateY(-8px);opacity:0;transition:.2s;font-size:13px}
.dre-toast.show{opacity:1;transform:none}.dre-toast.success{background:#f2fbf7;border-color:#bfe7d5;color:#0c6a46}.dre-toast.error{background:#fff5f5;border-color:#f1c0c0;color:#a43a3a}
@media(max-width:900px){.dre-directory .dre-controls-row{align-items:flex-start;flex-direction:column}.dre-directory .dre-controls-row .dre-sort-select{width:100%}.dre-directory .featured-row{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.dre-directory{padding-left:18px;padding-right:18px}.dre-directory .dre-hero h1{letter-spacing:-1px}.dre-directory .dre-search-row{align-items:stretch;flex-direction:column}.dre-directory .featured-row{grid-template-columns:1fr}.dre-directory .tc-bottom-row{align-items:flex-start;flex-direction:column}.dre-directory .tc-card-actions{justify-content:flex-start}.dre-toast-wrap{left:12px;right:12px}.dre-toast{min-width:0;max-width:none}} .dre-directory{
width:min(1120px,calc(100% - 40px));
max-width:1120px;
margin:0 auto;
padding:0 0 56px;
}
.dre-directory .dre-directory-browse-controls{margin-top:34px}
.dre-directory .dre-search-row{display:block;padding:0 0 8px}
.dre-directory .dre-search-row .search-box{width:100%;max-width:none}
.dre-directory .dre-controls-row{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;padding:8px 0 30px}
.dre-directory .dre-controls-row .filter-bar{display:flex;align-items:center;gap:8px;flex:1;min-width:0;flex-wrap:wrap}
.dre-directory .dre-controls-row .dre-sort-select{width:190px;flex:0 0 190px;margin:0}
.dre-directory .featured-row,
.dre-directory .tools-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.dre-directory .featured-row .tool-card,
.dre-directory .tools-grid .tool-card{width:100%;min-width:0;height:100%}
.dre-directory .tool-card{display:flex;flex-direction:column}
.dre-directory .tc-desc{flex:1}
.dre-directory .tc-verdict{margin-top:auto}
.dre-directory .verdict-stars,.dre-compare-stars{color:#f4b400!important;letter-spacing:1px}
.dre-directory .verdict-stars.is-empty{color:var(--dre-gray-5)!important}
.dre-directory .tc-meta-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:9px 0;border-bottom:1px solid var(--dre-gray-6)}
.dre-directory .tc-card-actions{display:flex;align-items:stretch;gap:7px;flex-wrap:wrap;padding-top:10px;justify-content:flex-start}
.dre-directory .tc-profile-button,
.dre-directory .tc-review-inline,
.dre-directory .tc-visit-inline,
.dre-directory .tc-share-button{font:inherit;font-size:11px;font-weight:600;line-height:1.2;border-radius:6px;padding:7px 9px;display:inline-flex;align-items:center;justify-content:center;text-decoration:none;cursor:pointer;white-space:nowrap}
.dre-directory .tc-profile-button,.dre-directory .tc-review-inline{background:#fff;border:1px solid var(--dre-black);color:var(--dre-black)}
.dre-directory .tc-visit-inline{background:#fff;border:1px solid var(--dre-gray-6);color:var(--dre-black)}
.dre-directory .tc-share-button{background:#fff;border:1px solid var(--dre-gray-6);color:var(--dre-gray-3)}
.dre-directory .tc-profile-button:hover,.dre-directory .tc-review-inline:hover{background:#f7f7f7;border-color:var(--dre-black);color:var(--dre-black);opacity:1}
.dre-directory .tc-visit-inline:hover,.dre-directory .tc-share-button:hover{border-color:var(--dre-black);color:var(--dre-black);opacity:1}
.dre-directory .tc-compare-button{margin-left:auto}
.dre-compare-actions{display:flex;flex-direction:column;gap:7px;min-width:160px}
.dre-compare-actions a{font-size:12px;font-weight:600;border-radius:5px;padding:8px 10px;text-decoration:none;display:inline-flex;justify-content:center;white-space:nowrap}
.dre-compare-actions .dre-action-review{background:#0a0a0a;color:#fff;border:1px solid #0a0a0a}
.dre-compare-actions .dre-action-visit{background:#fff;color:#0a0a0a;border:1px solid #ddd}
@media(max-width:900px){
.dre-directory .featured-row,.dre-directory .tools-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.dre-directory .dre-controls-row{flex-direction:row;align-items:flex-start}
.dre-directory .dre-controls-row .dre-sort-select{width:170px;flex-basis:170px}
}
@media(max-width:680px){
.dre-directory{width:calc(100% - 32px)}
.dre-directory .featured-row,.dre-directory .tools-grid{grid-template-columns:1fr}
.dre-directory .dre-controls-row{flex-direction:column}
.dre-directory .dre-controls-row .dre-sort-select{width:100%;flex-basis:auto}
.dre-directory .tc-card-actions{flex-direction:column}
.dre-directory .tc-card-actions>*{width:100%}
} .dre-directory .tc-profile-button,
.dre-directory .tc-review-inline,
.dre-directory .tc-visit-inline,
.dre-directory .tc-share-button,
.dre-directory .tc-profile-button:hover,
.dre-directory .tc-review-inline:hover,
.dre-directory .tc-visit-inline:hover,
.dre-directory .tc-share-button:hover,
.dre-directory .tc-profile-button:focus,
.dre-directory .tc-review-inline:focus,
.dre-directory .tc-visit-inline:focus,
.dre-directory .tc-share-button:focus,
.dre-compare-actions a,
.dre-compare-actions a:hover,
.dre-compare-actions a:focus{
text-decoration:none!important;
}
.dre-directory .tc-profile-button,
.dre-directory .tc-profile-button:hover,
.dre-directory .tc-profile-button:focus,
.dre-directory .tc-review-inline,
.dre-directory .tc-review-inline:hover,
.dre-directory .tc-review-inline:focus,
.dre-compare-actions .dre-action-review,
.dre-compare-actions .dre-action-review:hover,
.dre-compare-actions .dre-action-review:focus{
background:#fff;
color:#0a0a0a!important;
border:1px solid #0a0a0a;
}
.dre-directory .tc-visit-inline,
.dre-directory .tc-share-button,
.dre-directory .tc-visit-inline:hover,
.dre-directory .tc-share-button:hover,
.dre-directory .tc-visit-inline:focus,
.dre-directory .tc-share-button:focus,
.dre-compare-actions .dre-action-visit,
.dre-compare-actions .dre-action-visit:hover,
.dre-compare-actions .dre-action-visit:focus{
background:#fff;
color:#0a0a0a!important;
border:1px solid #0a0a0a;
} .dre-directory .tc-badge-wrap{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:5px;
}
.dre-directory .badge-ai{
display:inline-flex;
align-items:center;
font-size:10px;
font-weight:700;
letter-spacing:.035em;
white-space:nowrap;
padding:3px 8px;
border-radius:100px;
background:#fff4f4;
color:#b73f3e;
border:1px solid #efc2c1;
}
.dre-directory .tc-tags{
display:flex;
flex-wrap:wrap;
gap:4px;
margin-top:6px;
}
.dre-directory .tc-tags span{
display:inline-flex;
align-items:center;
padding:2px 7px;
border:1px solid var(--dre-gray-6);
border-radius:100px;
font-size:9.5px;
line-height:1.35;
font-weight:600;
color:var(--dre-gray-3);
background:var(--dre-white);
text-transform:none;
letter-spacing:0;
}
.dre-directory .tool-card.no-review .tc-verdict{
padding-top:12px;
}
.dre-directory .tool-card.no-review .tc-meta-row{
border-top:0;
} .dre-directory .tc-desc{
flex:none!important;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:4;
overflow:hidden;
min-height:84px;
max-height:84px;
}
.dre-directory .verdict-row{
min-height:30px;
}
.dre-directory .verdict-unreviewed{
font-size:12px;
line-height:1.45;
font-weight:600;
color:#777;
}
.dre-directory .tc-owner-upgrade{
display:block;
width:100%;
margin:11px 0 0;
padding:8px 0 0;
border:0;
border-top:1px solid var(--dre-gray-6);
background:transparent;
color:#777;
font:inherit;
font-size:10.5px;
line-height:1.35;
font-weight:600;
text-align:left;
cursor:pointer;
text-decoration:none!important;
}
.dre-directory .tc-owner-upgrade:hover{
color:var(--dre-accent);
}
.dre-directory .tc-owner-upgrade[hidden]{
display:none!important;
}
.dre-directory .dre-compare-not-reviewed{
color:#777;
font-size:12px;
line-height:1.45;
font-style:italic;
}
.dre-mf-hint{
margin:5px 0 0;
color:#777;
font-size:11px;
line-height:1.4;
} .dre-directory .dre-hero{
max-width:none;
}
.dre-directory .dre-hero h1{
max-width:1080px;
text-wrap:balance;
}
.dre-directory .dre-hero>p{
max-width:960px;
text-wrap:pretty;
}
.dre-directory .dre-controls-row .filter-bar{
gap:4px;
}
.dre-directory .tool-card.no-review .tc-verdict{
margin-top:0;
}
.dre-directory .tool-card.no-review .tc-who{
padding-bottom:6px;
}
.dre-directory .tc-card-actions{
flex-wrap:nowrap;
}
.dre-directory .tc-review-inline,
.dre-directory .tc-visit-inline{
flex:0 1 auto;
min-width:0;
}
.dre-directory .tc-share-button{
flex:0 0 34px;
width:34px;
padding:7px 0;
font-size:14px;
line-height:1;
}
@media(max-width:640px){
.dre-directory .tc-card-actions{flex-wrap:wrap}
} .dre-directory .dre-category-controls-row{
display:block;
padding:8px 0 14px;
}
.dre-directory .dre-category-controls-row .filter-bar{
width:100%;
gap:4px;
}
.dre-directory .dre-price-sort-row{
display:flex;
align-items:flex-end;
justify-content:space-between;
gap:28px;
padding:0 0 30px;
}
.dre-directory .dre-price-filter{
flex:1 1 auto;
max-width:620px;
min-width:0;
}
.dre-directory .dre-price-filter-head{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
margin-bottom:10px;
font-size:11px;
line-height:1.2;
font-weight:700;
color:var(--dre-gray-2);
}
.dre-directory .dre-price-filter-head #dre-price-filter-label{
text-transform:uppercase;
letter-spacing:.08em;
}
.dre-directory .dre-price-filter-head output{
color:var(--dre-black);
font-weight:700;
white-space:nowrap;
}
.dre-directory .dre-price-range{
position:relative;
height:22px;
}
.dre-directory .dre-price-range-track{
position:absolute;
left:8px;
right:8px;
top:9px;
height:4px;
border-radius:999px;
background:#e8e8e8;
overflow:hidden;
}
.dre-directory .dre-price-range-track span{
position:absolute;
top:0;
bottom:0;
left:0;
right:0;
background:#111;
border-radius:999px;
}
.dre-directory .dre-price-range input[type="range"]{
position:absolute;
left:0;
top:0;
width:100%;
height:22px;
margin:0;
padding:0;
border:0;
background:transparent;
pointer-events:none;
-webkit-appearance:none;
appearance:none;
}
.dre-directory .dre-price-range input[type="range"]::-webkit-slider-runnable-track{
height:4px;
background:transparent;
border:0;
}
.dre-directory .dre-price-range input[type="range"]::-webkit-slider-thumb{
width:17px;
height:17px;
margin-top:-6.5px;
border:2px solid #111;
border-radius:50%;
background:#fff;
box-shadow:0 1px 4px rgba(0,0,0,.15);
cursor:pointer;
pointer-events:auto;
-webkit-appearance:none;
appearance:none;
}
.dre-directory .dre-price-range input[type="range"]::-moz-range-track{
height:4px;
background:transparent;
border:0;
}
.dre-directory .dre-price-range input[type="range"]::-moz-range-thumb{
width:15px;
height:15px;
border:2px solid #111;
border-radius:50%;
background:#fff;
box-shadow:0 1px 4px rgba(0,0,0,.15);
cursor:pointer;
pointer-events:auto;
}
.dre-directory .dre-price-range input[type="range"]:focus-visible::-webkit-slider-thumb{
outline:2px solid #e85554;
outline-offset:2px;
}
.dre-directory .dre-price-range input[type="range"]:focus-visible::-moz-range-thumb{
outline:2px solid #e85554;
outline-offset:2px;
}
.dre-directory .dre-price-ticks{
display:grid;
grid-template-columns:repeat(7,1fr);
margin:3px 0 0;
color:#888;
font-size:9.5px;
line-height:1.2;
}
.dre-directory .dre-price-ticks span{
text-align:center;
}
.dre-directory .dre-price-ticks span:first-child{text-align:left}
.dre-directory .dre-price-ticks span:last-child{text-align:right}
.dre-directory .dre-price-sort-row .dre-sort-select{
flex:0 0 190px;
width:190px;
margin:0;
}
.dre-directory .dre-tools-newsletter{
display:grid;
grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
align-items:center;
gap:36px;
margin:48px 0 0;
padding:30px 32px;
border:1px solid #e6e6e6;
border-top:4px solid #e85554;
border-radius:16px;
background:#fff7f6;
}
.dre-directory .dre-tools-newsletter-kicker{
margin:0 0 9px;
color:#e85554;
font-size:10px;
line-height:1.2;
font-weight:800;
letter-spacing:.12em;
text-transform:uppercase;
}
.dre-directory .dre-tools-newsletter h2{
margin:0 0 9px;
color:#111;
font-family:"PT Serif",Georgia,serif;
font-size:29px;
line-height:1.14;
font-weight:700;
}
.dre-directory .dre-tools-newsletter p{
margin:0;
color:#666;
font-size:13px;
line-height:1.65;
}
.dre-directory .dre-tools-newsletter-form{
min-width:0;
}
.dre-directory .dre-tools-newsletter-form form{
display:flex;
align-items:stretch;
gap:8px;
width:100%;
margin:0;
}
.dre-directory .dre-tools-newsletter-form input[type="email"],
.dre-directory .dre-tools-newsletter-form input[type="text"]{
flex:1 1 auto;
min-width:0;
min-height:46px;
padding:10px 13px;
border:1px solid #ccc;
border-radius:7px;
background:#fff;
color:#111;
font:inherit;
font-size:13px;
}
.dre-directory .dre-tools-newsletter-form button,
.dre-directory .dre-tools-newsletter-form input[type="submit"]{
flex:0 0 auto;
min-height:46px;
padding:10px 17px;
border:1px solid #111;
border-radius:7px;
background:#111;
color:#fff;
font:inherit;
font-size:12px;
font-weight:700;
cursor:pointer;
text-decoration:none!important;
}
@media(max-width:800px){
.dre-directory .dre-price-sort-row{
align-items:stretch;
flex-direction:column;
gap:18px;
}
.dre-directory .dre-price-filter{max-width:none}
.dre-directory .dre-price-sort-row .dre-sort-select{
width:100%;
flex-basis:auto;
}
.dre-directory .dre-tools-newsletter{
grid-template-columns:1fr;
gap:20px;
}
}
@media(max-width:560px){
.dre-directory .dre-tools-newsletter{padding:24px 20px}
.dre-directory .dre-tools-newsletter-form form{flex-direction:column}
.dre-directory .dre-price-ticks{font-size:8.5px}
}
.dre-directory #dre-price-min{z-index:3}
.dre-directory #dre-price-max{z-index:4} .dre-directory .dre-hero{
padding:52px 0 36px;
max-width:none;
}
.dre-directory .dre-hero-eyebrow{
display:flex;
align-items:flex-start;
flex-direction:column;
gap:5px;
margin:0 0 20px;
}
.dre-directory .dre-hero-eyebrow-label{
color:#e85554;
font-size:12px;
line-height:1.2;
font-weight:800;
letter-spacing:.15em;
text-transform:uppercase;
}
.dre-directory .dre-hero-eyebrow-description{
color:#555;
font-size:14px;
line-height:1.4;
font-weight:600;
font-style:normal;
}
.dre-directory .dre-hero h1{
max-width:none;
font-size:clamp(36px,4.8vw,64px);
white-space:nowrap;
}
.dre-directory .dre-hero>p{
max-width:920px;
font-size:18px;
}
.dre-directory .dre-tools-newsletter-brandline{
display:flex;
align-items:flex-start;
flex-direction:column;
gap:5px;
margin:0 0 15px;
}
.dre-directory .dre-tools-newsletter-kicker{
margin:0;
color:#e85554;
font-size:12px;
line-height:1.2;
font-weight:800;
letter-spacing:.15em;
text-transform:uppercase;
}
.dre-directory .dre-tools-newsletter-descriptor{
color:#555;
font-size:14px;
line-height:1.4;
font-weight:600;
font-style:normal;
}
.dre-directory .dre-tools-newsletter h2{
font-size:28px;
line-height:1.16;
}
.dre-directory .dre-tools-newsletter p{
font-size:15px;
line-height:1.65;
}
.dre-directory .dre-tools-newsletter-form input[type="email"],
.dre-directory .dre-tools-newsletter-form input[type="text"],
.dre-directory .dre-tools-newsletter-form button,
.dre-directory .dre-tools-newsletter-form input[type="submit"]{
font-size:15px;
}
@media(max-width:640px){
.dre-directory .dre-hero h1{
font-size:clamp(32px,9vw,46px);
white-space:normal;
}
} .dre-tools-radar-brand{display:inline;white-space:nowrap;font-style:normal}
.dre-tools-radar-brand .dre-tools-radar-tools{color:#111!important}
.dre-tools-radar-brand .dre-tools-radar-radar{color:#e85554!important}
.dre-directory .dre-maker-actions{
display:inline-flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
}
.dre-directory .search-box{position:relative}
.dre-directory .dre-search-clear{
flex:0 0 30px;
width:30px;
height:30px;
margin:-3px -5px -3px 2px;
padding:0;
border:0;
border-radius:50%;
background:transparent;
color:#777;
font:inherit;
font-size:22px;
line-height:30px;
cursor:pointer;
}
.dre-directory .dre-search-clear:hover,
.dre-directory .dre-search-clear:focus-visible{background:#f3f3f3;color:#111;outline:none}
.dre-directory .dre-search-clear[hidden]{display:none!important}
.dre-directory .dre-filter-sort-actions{
display:flex;
align-items:center;
justify-content:flex-end;
gap:10px;
flex:0 0 auto;
}
.dre-directory .dre-reviewed-filter{
display:inline-flex;
align-items:center;
gap:7px;
min-height:39px;
padding:8px 13px;
border:1.5px solid #dedede;
border-radius:999px;
background:#fff;
color:#444;
font:inherit;
font-size:12px;
font-weight:700;
line-height:1;
white-space:nowrap;
cursor:pointer;
transition:background .14s ease,border-color .14s ease,color .14s ease,box-shadow .14s ease;
}
.dre-directory .dre-reviewed-filter-check{
display:inline-grid;
place-items:center;
width:17px;
height:17px;
border:1px solid #bbb;
border-radius:50%;
color:transparent;
font-size:10px;
line-height:1;
}
.dre-directory .dre-reviewed-filter:hover{border-color:#999;color:#111}
.dre-directory .dre-reviewed-filter.is-active,
.dre-directory .dre-reviewed-filter[aria-pressed="true"]{
border-color:#111;
background:#111;
color:#fff;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.dre-directory .dre-reviewed-filter.is-active .dre-reviewed-filter-check,
.dre-directory .dre-reviewed-filter[aria-pressed="true"] .dre-reviewed-filter-check{
border-color:#e85554;
background:#e85554;
color:#fff;
}
.dre-directory .dre-price-sort-row .dre-sort-select{flex:0 0 190px;width:190px} .dre-directory .verdict-stars,
.dre-compare-stars,
.dre-directory .dre-rating-stars{
position:relative;
display:inline-block;
color:#d9d9d9!important;
font-size:24px!important;
line-height:1!important;
letter-spacing:1px;
white-space:nowrap;
}
.dre-directory .verdict-stars::before,
.dre-compare-stars::before,
.dre-directory .dre-rating-stars::before{
content:"★★★★★";
position:absolute;
inset:0 auto 0 0;
width:var(--dre-rating-percent,0%);
overflow:hidden;
color:#e85554;
white-space:nowrap;
pointer-events:none;
}
.dre-directory .verdict-stars.is-empty::before{width:0}
.dre-required{color:#e85554;font-weight:800}
.dre-required-note{margin:0 0 10px;color:#777;font-size:11px;line-height:1.4}
@media(max-width:800px){
.dre-directory .dre-filter-sort-actions{width:100%;justify-content:space-between}
.dre-directory .dre-filter-sort-actions .dre-sort-select{width:min(190px,48%);flex-basis:min(190px,48%)}
}
@media(max-width:520px){
.dre-directory .dre-filter-sort-actions{align-items:stretch;flex-direction:column}
.dre-directory .dre-reviewed-filter{justify-content:center}
.dre-directory .dre-filter-sort-actions .dre-sort-select{width:100%;flex-basis:auto}
.dre-directory .dre-maker-actions{align-items:flex-start;flex-direction:column;gap:7px}
} .dre-directory .verdict-stars.dre-rating-stars{
position:relative!important;
display:inline-block!important;
font-size:24px!important;
line-height:1!important;
letter-spacing:1px!important;
white-space:nowrap!important;
color:#d9d9d9!important;
background:none!important;
-webkit-text-fill-color:initial!important;
}
.dre-directory .verdict-stars.dre-rating-stars::before{
content:"★★★★★"!important;
position:absolute!important;
inset:0 auto 0 0!important;
width:var(--dre-rating-percent,0%)!important;
overflow:hidden!important;
color:#e85554!important;
white-space:nowrap!important;
pointer-events:none!important;
} .dre-directory .dre-rating-lockup,
.dre-compare-modal .dre-rating-lockup{
display:inline-flex;
align-items:center;
gap:8px;
white-space:nowrap;
}
.dre-directory .dre-rating-lockup[hidden]{display:none!important}
.dre-directory .dre-rating-text,
.dre-compare-modal .dre-rating-text{
color:#666;
font-family:"Raleway",Arial,sans-serif;
font-size:11px;
font-weight:600;
line-height:1.2;
letter-spacing:0;
} .dre-directory .dre-rating-text,
.dre-compare-modal .dre-rating-text{
font-size:16px!important;
font-weight:500!important;
}
.dre-directory .tc-owner-upgrade{
display:flex;
align-items:center;
gap:4px;
flex-wrap:wrap;
width:100%;
margin:11px 0 0;
padding:8px 0 0;
border:0;
border-top:1px solid var(--dre-gray-6);
background:transparent;
color:#777;
font:inherit;
font-size:10.5px;
line-height:1.35;
font-weight:600;
text-align:left;
}
.dre-directory .tc-owner-copy,
.dre-directory .tc-owner-sep{color:#777}
.dre-directory .tc-owner-upgrade-link,
.dre-directory .tc-owner-media-kit{
padding:0;
border:0;
background:transparent;
color:#777!important;
font:inherit;
font-size:inherit;
font-weight:inherit;
line-height:inherit;
text-decoration:none!important;
cursor:pointer;
}
.dre-directory .tc-owner-upgrade-link:hover,
.dre-directory .tc-owner-media-kit:hover{color:var(--dre-accent)!important} .dre-modal-review-box{
border:1.5px solid #6f91bd;
background:#f5f8fd;
}
.dre-modal-review-box:has(input:checked){
box-shadow:0 0 0 3px rgba(79,117,168,.18);
}
.dre-modal-offer-badge--review{
background:#dce8f7;
color:#31577f;
}
.dre-modal-review-box input[type="checkbox"]{
accent-color:#4f75a8;
}
.dre-directory .tc-owner-upgrade-link[hidden],
.dre-directory .tc-owner-sep[hidden]{display:none!important} .dre-directory .dre-tools-hub-nav{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:8px 18px;
margin:0 0 30px;
padding:13px 0;
border-top:1px solid #e7e7e7;
border-bottom:1px solid #e7e7e7;
font-family:"Raleway",Arial,sans-serif;
font-size:12px;
line-height:1.3;
}
.dre-directory .dre-tools-hub-nav-label{
color:#999;
font-size:10px;
font-weight:700;
letter-spacing:.1em;
text-transform:uppercase;
}
.dre-directory .dre-tools-hub-nav a{
color:#555!important;
font-weight:600;
text-decoration:none!important;
}
.dre-directory .dre-tools-hub-nav a:hover,
.dre-directory .dre-tools-hub-nav a:focus,
.dre-directory .dre-tools-hub-nav a.is-current{
color:#e85554!important;
}
@media(max-width:640px){
.dre-directory .dre-tools-hub-nav{gap:8px 13px;margin-bottom:24px}
.dre-directory .dre-tools-hub-nav-label{width:100%}
} .dre-compare-editorial-link{
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
margin-top:14px;
padding:13px 15px;
border:1px solid #dedede;
border-left:3px solid #e85554;
border-radius:6px;
background:#fafafa;
font-family:"Raleway",Arial,sans-serif;
font-size:12px;
line-height:1.4;
}
.dre-compare-editorial-link[hidden]{display:none!important}
.dre-compare-editorial-link span{color:#666;font-weight:600}
.dre-compare-editorial-link a{color:#111!important;font-weight:750;text-decoration:none!important;text-align:right}
.dre-compare-editorial-link a:hover{color:#e85554!important}
@media(max-width:600px){
.dre-compare-editorial-link{align-items:flex-start;flex-direction:column;gap:6px}
.dre-compare-editorial-link a{text-align:left}
} .dre-directory .dre-seo-pagination{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:7px;
margin:16px auto 34px;
padding:0 20px;
font-family:"Raleway",Arial,sans-serif;
font-size:11px;
line-height:1.2;
}
.dre-directory .dre-seo-pagination[hidden]{display:none!important}
.dre-directory .dre-seo-pagination-label{
margin-right:3px;
color:#999;
font-size:9px;
font-weight:700;
letter-spacing:.08em;
text-transform:uppercase;
}
.dre-directory .dre-seo-page{
appearance:none;
font-family:inherit;
font-size:inherit;
line-height:inherit;
cursor:pointer;
display:inline-flex;
align-items:center;
justify-content:center;
min-width:28px;
min-height:28px;
padding:5px 8px;
border:1px solid #e4e4e4;
border-radius:5px;
background:#fff;
color:#666!important;
font-weight:650;
text-decoration:none!important;
}
.dre-directory a.dre-seo-page:hover,
.dre-directory a.dre-seo-page:focus,
.dre-directory button.dre-seo-page:hover,
.dre-directory button.dre-seo-page:focus{
border-color:#e85554;
color:#e85554!important;
}
.dre-directory .dre-seo-page.is-current{
border-color:#111;
background:#111;
color:#fff!important;
}
.dre-directory .dre-seo-page-prev,
.dre-directory .dre-seo-page-next{padding-left:10px;padding-right:10px}
.dre-directory .dre-seo-page-gap{color:#aaa;padding:0 1px}
@media(max-width:640px){
.dre-directory .dre-seo-pagination{gap:5px;margin-top:14px;padding:0}
.dre-directory .dre-seo-pagination-label{width:100%;margin:0 0 3px;text-align:center}
.dre-directory .dre-seo-page{min-width:26px;min-height:26px;padding:4px 7px}
} .dre-campaign-founder-rate{position:relative;display:inline-block;font-family:'Raleway',Arial,sans-serif;z-index:30}
.dre-campaign-founder-rate summary{list-style:none;display:inline-flex;align-items:center;gap:7px;min-height:34px;padding:7px 10px;border:1px solid #9fbd8c;border-radius:999px;background:#f2f8ef;color:#214b24;cursor:pointer;font-size:13px;line-height:1;font-weight:700;white-space:nowrap;transition:border-color .15s ease,background .15s ease,transform .15s ease}
.dre-campaign-founder-rate summary::-webkit-details-marker{display:none}
.dre-campaign-founder-rate summary:hover,.dre-campaign-founder-rate[open] summary{border-color:#6f9d61;background:#e9f4e4;transform:translateY(-1px)}
.dre-campaign-founder-rate-emoji{font-size:15px;line-height:1}
.dre-campaign-founder-rate summary strong{font-size:13px;line-height:1.2;font-weight:800;color:#214b24}
.dre-campaign-founder-rate-info{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border:1px solid #86aa76;border-radius:50%;color:#47713f;font-family:Arial,sans-serif;font-size:10px;font-weight:700;line-height:1}
.dre-campaign-founder-rate-popover{position:absolute;top:calc(100% + 10px);left:0;width:min(330px,calc(100vw - 40px));padding:16px 17px;border:1px solid #d5e4cf;border-radius:10px;background:#fff;box-shadow:0 14px 38px rgba(0,0,0,.12);color:#555;text-align:left;white-space:normal;z-index:100}
.dre-campaign-founder-rate-popover::before{content:"";position:absolute;top:-6px;left:22px;width:10px;height:10px;background:#fff;border-left:1px solid #d5e4cf;border-top:1px solid #d5e4cf;transform:rotate(45deg)}
.dre-campaign-founder-rate-popover>strong{display:block;margin:0 0 7px;color:#111;font-size:14px;line-height:1.35;font-weight:800}
.dre-campaign-founder-rate-popover p{margin:0;color:#626262;font-size:13px;line-height:1.55}
.dre-campaign-founder-rate-popover a{display:inline-flex;margin-top:10px;color:#111!important;text-decoration:none!important;font-size:13px;font-weight:800}
.dre-campaign-founder-rate-popover a:hover{color:#47713f!important}
@media(max-width:640px){.dre-campaign-founder-rate-popover{left:0!important;right:auto!important}.dre-campaign-founder-rate-popover::before{left:22px!important;right:auto!important}}
.dre-modal-bundle-box .dre-campaign-founder-rate{margin:13px 0 0 34px}
.dre-modal-bundle-box .dre-campaign-founder-rate-popover{left:auto;right:0}
.dre-modal-bundle-box .dre-campaign-founder-rate-popover::before{left:auto;right:24px} .dre-modal-bundle-box{overflow:visible}
.dre-modal-bundle-box .dre-campaign-founder-rate{
display:inline-block;
width:auto;
max-width:calc(100% - 34px);
}
.dre-modal-bundle-box .dre-campaign-founder-rate-popover{
position:absolute;
top:auto;
bottom:calc(100% + 10px);
left:0;
right:auto;
width:min(330px,calc(100vw - 64px));
max-width:none;
margin:0;
box-sizing:border-box;
z-index:1000;
}
.dre-modal-bundle-box .dre-campaign-founder-rate-popover::before{
top:auto;
bottom:-6px;
left:22px;
right:auto;
border-left:0;
border-top:0;
border-right:1px solid #d5e4cf;
border-bottom:1px solid #d5e4cf;
}
@media(max-width:640px){
.dre-modal-bundle-box .dre-campaign-founder-rate{margin-left:0;max-width:100%}
} .dre-directory .tc-card-actions{display:flex;align-items:center;justify-content:flex-start;gap:7px;flex-wrap:wrap;padding-top:10px}
.dre-directory .tc-profile-button,
.dre-directory .tc-review-inline,
.dre-directory .tc-visit-inline{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;width:auto;max-width:100%;padding:8px 12px;border:1px solid #0a0a0a!important;border-radius:6px;background:#fff!important;color:#0a0a0a!important;font:inherit;font-size:10.5px;font-weight:700;line-height:1.15;text-decoration:none!important;white-space:nowrap;cursor:pointer;overflow:visible}
.dre-directory .tc-profile-button:hover,
.dre-directory .tc-review-inline:hover,
.dre-directory .tc-visit-inline:hover,
.dre-directory .tc-profile-button:focus,
.dre-directory .tc-review-inline:focus,
.dre-directory .tc-visit-inline:focus{background:#f7f7f7!important;color:#0a0a0a!important;border-color:#0a0a0a!important;opacity:1;text-decoration:none!important}
.dre-directory .tc-visit-inline.is-disabled{opacity:.5;pointer-events:none}
.dre-directory .tc-share-button{display:none!important} .dre-directory .dre-hero{max-width:780px!important}
.dre-directory .dre-hero h1{max-width:780px!important;white-space:normal!important;text-wrap:balance;font-size:clamp(38px,4.4vw,62px)!important;line-height:1.02!important}
.dre-directory .dre-hero-title-brand,.dre-directory .dre-hero-title-copy{display:inline}
@media(max-width:760px){.dre-directory .tc-card-actions{align-items:stretch;flex-direction:column}.dre-directory .tc-profile-button,.dre-directory .tc-review-inline,.dre-directory .tc-visit-inline{width:100%;font-size:11px}.dre-directory .dre-hero{max-width:100%!important}.dre-directory .dre-hero h1{font-size:clamp(32px,9vw,46px)!important}}.dre-drawer-overlay {
position: fixed;
inset: 0;
background: rgba(10, 10, 10, .55);
z-index: 100000;
display: flex;
justify-content: flex-end;
}
.dre-drawer-overlay[hidden] {
display: none;
}
.dre-drawer {
background: #fff;
width: 100%;
max-width: 480px;
height: 100%;
overflow-y: auto;
padding: 32px 32px 40px;
position: relative;
box-shadow: -8px 0 32px rgba(0,0,0,.12);
transform: translateX(100%);
transition: transform .25s ease;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #0a0a0a;
box-sizing: border-box;
}
.dre-drawer-overlay.is-open .dre-drawer {
transform: translateX(0);
}
.dre-drawer * ,
.dre-drawer *::before,
.dre-drawer *::after {
box-sizing: border-box;
}
.dre-drawer a {
text-decoration: none;
}
.dre-drawer-close {
position: absolute;
top: 16px;
right: 20px;
font-size: 28px;
line-height: 1;
color: #999;
background: none;
border: none;
cursor: pointer;
padding: 4px;
}
.dre-drawer-close:hover {
color: #0a0a0a;
}
.dre-drawer-head {
display: flex;
align-items: center;
gap: 14px;
margin: 4px 44px 16px 0;
}
.dre-drawer-icon {
width: 56px;
height: 56px;
border-radius: 12px;
background: #f4f4f4;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 700;
flex-shrink: 0;
overflow: hidden;
}
.dre-drawer-icon-img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 8px;
}
.dre-drawer-title {
font-size: 26px;
font-weight: 800;
line-height: 1.15;
letter-spacing: -.2px;
}
.dre-drawer-cat {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .07em;
color: #999;
font-weight: 600;
margin-top: 3px;
}
.dre-drawer-meta-row {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 18px;
}
.dre-drawer-stars {
color: #00a86b;
font-size: 18px;
letter-spacing: 2px;
}
.dre-drawer-stars.is-empty {
color: #ccc;
}
.dre-drawer-price {
font-weight: 700;
font-size: 14px;
color: #0a0a0a;
background: #f4f4f4;
padding: 4px 10px;
border-radius: 6px;
}
.dre-drawer-desc {
font-size: 15px;
line-height: 1.7;
color: #333;
margin: 0 0 16px;
}
.dre-drawer-pricing-notes {
font-size: 13px;
color: #666;
background: #f9f9f9;
border: 1px solid #eee;
border-radius: 8px;
padding: 10px 14px;
margin-bottom: 20px;
}
.dre-drawer-proscons {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 24px;
}
.dre-drawer-subhead {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: #666;
margin-bottom: 8px;
}
.dre-drawer-pros-list,
.dre-drawer-cons-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 8px;
font-size: 13.5px;
line-height: 1.5;
color: #333;
}
.dre-drawer-pros-list li {
padding-left: 18px;
position: relative;
}
.dre-drawer-pros-list li::before {
content: "+";
position: absolute;
left: 0;
color: #00a86b;
font-weight: 700;
}
.dre-drawer-cons-list li {
padding-left: 18px;
position: relative;
}
.dre-drawer-cons-list li::before {
content: "–";
position: absolute;
left: 0;
color: #c0392b;
font-weight: 700;
}
.dre-drawer-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
border-top: 1px solid #e8e8e8;
padding-top: 20px;
}
.dre-drawer-visit {
font-size: 14px;
font-weight: 600;
color: #fff;
background: #0a0a0a;
padding: 12px 18px;
border-radius: 6px;
transition: opacity .12s;
display: inline-flex;
align-items: center;
gap: 6px;
}
.dre-drawer-visit:hover {
opacity: .75;
}
.dre-drawer-profile,
.dre-drawer-review,
.dre-drawer-share {
font-size: 13px;
font-weight: 500;
color: #666;
padding: 12px 18px;
border-radius: 6px;
border: 1px solid #e8e8e8;
background: #fff;
transition: all .12s;
cursor: pointer;
font-family: inherit;
display: inline-flex;
align-items: center;
gap: 6px;
}
.dre-drawer-profile:hover,
.dre-drawer-review:hover,
.dre-drawer-share:hover {
border-color: #333;
color: #0a0a0a;
}
@media (max-width: 640px) {
.dre-drawer {
max-width: 100%;
}
.dre-drawer-proscons {
grid-template-columns: 1fr;
}
} .dre-drawer-review-summary{background:#fafafa;border-left:3px solid #0a0a0a;padding:13px 15px;margin:0 0 22px}
.dre-drawer-review-summary p{font-size:14px;line-height:1.65;color:#333;margin:6px 0 0}
.dre-drawer-actions .dre-drawer-review{background:#fff;color:#0a0a0a;border:1px solid #0a0a0a;font-weight:600}
.dre-drawer-actions .dre-drawer-visit{background:#fff;color:#0a0a0a;border:1px solid #0a0a0a}
.dre-drawer-actions .dre-drawer-share{background:#fff}
.dre-drawer-pros-list li::before{content:"✓"}.dre-drawer-cons-list li::before{content:"✕"} .dre-drawer{max-width:510px}
.dre-drawer-stars{color:#f4b400}
.dre-drawer-actions{display:flex;flex-wrap:nowrap;gap:7px;align-items:stretch}
.dre-drawer-profile,.dre-drawer-review,.dre-drawer-visit,.dre-drawer-share{font-size:11px;font-weight:600;padding:10px 8px;white-space:nowrap;justify-content:center;flex:1 1 0;min-width:0}
.dre-drawer-review{background:#fff;color:#0a0a0a;border:1px solid #0a0a0a}
.dre-drawer-profile{background:#fff;color:#0a0a0a;border:1px solid #0a0a0a}
.dre-drawer-visit{background:#fff;color:#0a0a0a;border:1px solid #ddd}
.dre-drawer-share{background:#fff;color:#666;border:1px solid #ddd;flex:0 0 40px}
.dre-drawer-review:hover{background:#f7f7f7;color:#0a0a0a;opacity:1}
.dre-drawer-profile:hover,.dre-drawer-visit:hover,.dre-drawer-share:hover{border-color:#0a0a0a;color:#0a0a0a;opacity:1}
@media(max-width:520px){.dre-drawer-actions{flex-wrap:wrap}.dre-drawer-actions>*{flex:1 1 100%}} .dre-drawer-pros-list li::before{
content:"✓";
color:#198754;
}
.dre-drawer-cons-list li::before{
content:"✕";
color:#b42318;
}
.dre-drawer-profile,
.dre-drawer-review,
.dre-drawer-visit,
.dre-drawer-share,
.dre-drawer-profile:hover,
.dre-drawer-review:hover,
.dre-drawer-visit:hover,
.dre-drawer-share:hover,
.dre-drawer-profile:focus,
.dre-drawer-review:focus,
.dre-drawer-visit:focus,
.dre-drawer-share:focus{
text-decoration:none!important;
}
.dre-drawer-actions .dre-drawer-review,
.dre-drawer-actions .dre-drawer-review:hover,
.dre-drawer-actions .dre-drawer-review:focus{
background:#fff;
color:#0a0a0a!important;
border:1px solid #0a0a0a;
}
.dre-drawer-actions .dre-drawer-profile,
.dre-drawer-actions .dre-drawer-visit,
.dre-drawer-actions .dre-drawer-share,
.dre-drawer-actions .dre-drawer-profile:hover,
.dre-drawer-actions .dre-drawer-visit:hover,
.dre-drawer-actions .dre-drawer-share:hover,
.dre-drawer-actions .dre-drawer-profile:focus,
.dre-drawer-actions .dre-drawer-visit:focus,
.dre-drawer-actions .dre-drawer-share:focus{
background:#fff;
color:#0a0a0a!important;
border:1px solid #0a0a0a;
} .dre-drawer-tags{
display:flex;
flex-wrap:wrap;
gap:5px;
margin-top:7px;
}
.dre-drawer-tags span{
display:inline-flex;
align-items:center;
padding:3px 8px;
border:1px solid #e8e8e8;
border-radius:100px;
font-size:10px;
line-height:1.3;
font-weight:600;
color:#666;
background:#fff;
}
.dre-drawer-ai-badge{
display:inline-flex;
align-items:center;
font-size:10px;
font-weight:700;
letter-spacing:.035em;
padding:4px 9px;
border-radius:100px;
background:#fff4f4;
color:#b73f3e;
border:1px solid #efc2c1;
} .dre-drawer-verdict{
margin:0 0 18px;
padding:14px 0;
border-top:1px solid #e8e8e8;
border-bottom:1px solid #e8e8e8;
}
.dre-drawer-verdict-label{
margin:0 0 7px;
color:#888;
font-size:10px;
line-height:1.2;
font-weight:700;
letter-spacing:.1em;
text-transform:uppercase;
}
.dre-drawer-unreviewed{
color:#777;
font-size:13px;
line-height:1.5;
font-weight:600;
}
.dre-drawer-owner-upgrade{
display:block;
width:100%;
margin:12px 0 0;
padding:10px 0 0;
border:0;
border-top:1px solid #e8e8e8;
background:transparent;
color:#777;
font:inherit;
font-size:11px;
line-height:1.4;
font-weight:600;
text-align:left;
cursor:pointer;
text-decoration:none!important;
}
.dre-drawer-owner-upgrade:hover{
color:#e85554;
}
.dre-drawer-owner-upgrade[hidden]{
display:none!important;
}
.dre-upgrade-modal[hidden]{
display:none!important;
}
.dre-upgrade-modal{
position:fixed;
inset:0;
z-index:100000;
display:flex;
align-items:center;
justify-content:center;
padding:20px;
background:rgba(0,0,0,.55);
box-sizing:border-box;
}
.dre-upgrade-box{
position:relative;
width:min(620px,100%);
max-height:calc(100vh - 40px);
overflow:auto;
box-sizing:border-box;
padding:30px;
border-radius:14px;
background:#fff;
box-shadow:0 24px 70px rgba(0,0,0,.22);
font-family:"Raleway",Arial,sans-serif;
}
.dre-upgrade-close{
position:absolute;
top:12px;
right:14px;
border:0;
background:transparent;
color:#555;
font-size:28px;
line-height:1;
cursor:pointer;
}
.dre-upgrade-box h2{
margin:0 36px 7px 0;
color:#111;
font-family:"PT Serif",Georgia,serif;
font-size:28px;
line-height:1.2;
}
.dre-upgrade-premium-description{
margin:0 0 7px;
color:#666;
font-size:14px;
line-height:1.55;
}
.dre-upgrade-box h2.dre-upgrade-title{
margin:0 36px 10px 0;
color:#111;
font-family:"PT Serif",Georgia,serif;
font-size:28px;
font-weight:700;
line-height:1.2;
}
.dre-upgrade-box p.dre-upgrade-intro{
margin:0 36px 24px 0;
color:#777;
font-family:"Raleway",Arial,sans-serif;
font-size:15px;
font-weight:400;
line-height:1.55;
}
.dre-upgrade-box p.dre-upgrade-intro strong{
font-weight:700;
}
.dre-upgrade-cards{
display:grid;
gap:12px;
}
.dre-upgrade-offer{
position:relative;
display:block;
padding:20px 18px 18px;
border-radius:10px;
cursor:pointer;
transition:box-shadow .15s ease,transform .15s ease;
}
.dre-upgrade-offer:hover{
transform:translateY(-1px);
box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.dre-upgrade-offer--featured{
border:1.5px solid #e1bd55;
background:#fffaf0;
}
.dre-upgrade-offer--bundle{
border:2px solid #e85554;
background:#fff7f7;
}
.dre-upgrade-offer--featured:has(input:checked){
box-shadow:0 0 0 3px rgba(225,189,85,.22);
}
.dre-upgrade-offer--bundle:has(input:checked){
box-shadow:0 0 0 3px rgba(232,85,84,.16);
}
.dre-upgrade-badge{
display:inline-block;
margin:0 0 11px 34px;
padding:4px 9px;
border-radius:999px;
font-size:9px;
line-height:1.2;
font-weight:800;
letter-spacing:.85px;
text-transform:uppercase;
}
.dre-upgrade-badge--featured{
background:#f6e7ae;
color:#745a00;
}
.dre-upgrade-badge--bundle{
background:#e85554;
color:#fff;
}
.dre-upgrade-offer-row{
display:flex;
align-items:flex-start;
gap:11px;
}
.dre-upgrade-offer input{
margin-top:3px;
accent-color:#111;
}
.dre-upgrade-offer--bundle input{
accent-color:#e85554;
}
.dre-upgrade-offer strong{
display:block;
color:#111;
font-size:15px;
line-height:1.4;
font-weight:800;
}
.dre-upgrade-offer small{
display:block;
margin-top:5px;
color:#666;
font-size:12px;
line-height:1.55;
}
.dre-upgrade-reviewed-note{
margin:12px 0 0;
color:#777;
font-size:11px;
line-height:1.5;
}
.dre-upgrade-actions{
display:flex;
gap:10px;
margin-top:20px;
}
.dre-upgrade-continue,
.dre-upgrade-cancel{
flex:1;
padding:12px 14px;
border-radius:7px;
font:inherit;
font-size:13px;
font-weight:700;
cursor:pointer;
text-decoration:none!important;
}
.dre-upgrade-continue{
border:1px solid #111;
background:#111;
color:#fff;
}
.dre-upgrade-cancel{
border:1px solid #111;
background:#fff;
color:#111;
}
@media (max-width:600px){
.dre-upgrade-box{padding:24px 18px}
.dre-upgrade-actions{flex-direction:column}
} .dre-drawer-meta-row{
margin-bottom:8px;
}
.dre-drawer-pricing-notes{
margin:0 0 16px;
}
.dre-drawer-share{
flex:0 0 42px!important;
width:42px;
padding:10px 0!important;
font-size:15px!important;
line-height:1!important;
} .dre-drawer{
display:flex;
flex-direction:column;
padding-bottom:0;
}
.dre-drawer-verdict[hidden],
.dre-drawer-review-summary[hidden],
.dre-drawer-unreviewed-state[hidden]{
display:none!important;
}
.dre-drawer-review-summary{
margin:0 0 21px;
padding:14px 15px;
border-left:3px solid #111;
background:#fafafa;
}
.dre-drawer-review-summary-label{
margin:0 0 6px;
color:#888;
font-size:9px;
line-height:1.2;
font-weight:800;
letter-spacing:.1em;
text-transform:uppercase;
}
.dre-drawer-review-summary p{
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:4;
overflow:hidden;
margin:0;
color:#333;
font-size:13px;
line-height:1.6;
}
.dre-drawer-review-summary-more{
display:inline-block;
margin-top:7px;
color:#111;
font-size:11px;
line-height:1.3;
font-weight:700;
text-decoration:none!important;
}
.dre-drawer-review-summary-more:hover{
color:#e85554;
}
.dre-drawer-unreviewed-state{
flex:1 1 auto;
min-height:220px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:30px 22px 40px;
color:#777;
}
.dre-drawer-unreviewed-rule{
width:34px;
height:3px;
margin-bottom:17px;
border-radius:999px;
background:#e85554;
}
.dre-drawer-unreviewed-state strong{
display:block;
max-width:300px;
color:#111;
font-family:"PT Serif",Georgia,serif;
font-size:20px;
line-height:1.25;
font-weight:700;
}
.dre-drawer-unreviewed-state span{
display:block;
max-width:310px;
margin-top:8px;
color:#888;
font-size:12px;
line-height:1.55;
}
.dre-drawer-footer{
position:sticky;
bottom:0;
z-index:4;
margin-top:auto;
padding:14px 0 24px;
background:#fff;
box-shadow:0 -12px 18px rgba(255,255,255,.96);
}
.dre-drawer-footer .dre-drawer-actions{
padding-top:0;
}
.dre-drawer.has-review .dre-drawer-footer{
border-top:1px solid #e8e8e8;
}
.dre-drawer.has-review .dre-drawer-actions{
border-top:0;
}
.dre-drawer.no-review .dre-drawer-proscons{
display:none;
} .dre-tools-radar-brand{display:inline;white-space:nowrap;font-style:normal}
.dre-tools-radar-brand .dre-tools-radar-tools{color:#111!important}
.dre-tools-radar-brand .dre-tools-radar-radar{color:#e85554!important}
.dre-drawer-stars.dre-rating-stars{
position:relative;
display:inline-block;
color:#d9d9d9!important;
font-size:24px!important;
line-height:1!important;
letter-spacing:1px;
white-space:nowrap;
}
.dre-drawer-stars.dre-rating-stars::before{
content:"★★★★★";
position:absolute;
inset:0 auto 0 0;
width:var(--dre-rating-percent,0%);
overflow:hidden;
color:#e85554;
white-space:nowrap;
pointer-events:none;
} .dre-drawer .dre-drawer-stars.dre-rating-stars{
position:relative!important;
display:inline-block!important;
font-size:24px!important;
line-height:1!important;
letter-spacing:1px!important;
white-space:nowrap!important;
color:#d9d9d9!important;
background:none!important;
-webkit-text-fill-color:initial!important;
}
.dre-drawer .dre-drawer-stars.dre-rating-stars::before{
content:"★★★★★"!important;
position:absolute!important;
inset:0 auto 0 0!important;
width:var(--dre-rating-percent,0%)!important;
overflow:hidden!important;
color:#e85554!important;
white-space:nowrap!important;
pointer-events:none!important;
} .dre-drawer .dre-rating-lockup{
display:inline-flex;
align-items:center;
gap:9px;
white-space:nowrap;
}
.dre-drawer .dre-rating-lockup[hidden]{display:none!important}
.dre-drawer .dre-rating-text{
color:#666;
font-family:"Raleway",Arial,sans-serif;
font-size:12px;
font-weight:600;
line-height:1.2;
letter-spacing:0;
} .dre-drawer .dre-rating-text{
font-size:16px!important;
font-weight:500!important;
}
.dre-drawer-owner-upgrade{
display:flex;
align-items:center;
gap:4px;
flex-wrap:wrap;
width:100%;
}
.dre-drawer-owner-copy,
.dre-drawer-owner-sep{color:#777}
.dre-drawer-owner-upgrade-link,
.dre-drawer-owner-media-kit{
padding:0;
border:0;
background:transparent;
color:#777!important;
font:inherit;
font-size:inherit;
font-weight:inherit;
line-height:inherit;
text-decoration:none!important;
cursor:pointer;
}
.dre-drawer-owner-upgrade-link:hover,
.dre-drawer-owner-media-kit:hover{color:#e85554!important} .dre-upgrade-offer--review{
border:1.5px solid #6f91bd;
background:#f5f8fd;
}
.dre-upgrade-offer--review:has(input:checked){
box-shadow:0 0 0 3px rgba(79,117,168,.18);
}
.dre-upgrade-badge--review{
background:#dce8f7;
color:#31577f;
}
.dre-upgrade-offer--review input{
accent-color:#4f75a8;
}
.dre-upgrade-offer[hidden]{
display:none!important;
}
.dre-drawer-owner-upgrade-link[hidden],
.dre-drawer-owner-sep[hidden]{display:none!important} #dre-upgrade-founder-rate-note{margin-top:-2px}
#dre-upgrade-founder-rate-note[hidden]{display:none!important} .dre-campaign-founder-rate{position:relative;display:inline-block;font-family:'Raleway',Arial,sans-serif;z-index:30}
.dre-campaign-founder-rate summary{list-style:none;display:inline-flex;align-items:center;gap:7px;min-height:34px;padding:7px 10px;border:1px solid #9fbd8c;border-radius:999px;background:#f2f8ef;color:#214b24;cursor:pointer;font-size:13px;line-height:1;font-weight:700;white-space:nowrap;transition:border-color .15s ease,background .15s ease,transform .15s ease}
.dre-campaign-founder-rate summary::-webkit-details-marker{display:none}
.dre-campaign-founder-rate summary:hover,.dre-campaign-founder-rate[open] summary{border-color:#6f9d61;background:#e9f4e4;transform:translateY(-1px)}
.dre-campaign-founder-rate-emoji{font-size:15px;line-height:1}
.dre-campaign-founder-rate summary strong{font-size:13px;line-height:1.2;font-weight:800;color:#214b24}
.dre-campaign-founder-rate-info{display:inline-flex;align-items:center;justify-content:center;width:16px;height:16px;border:1px solid #86aa76;border-radius:50%;color:#47713f;font-family:Arial,sans-serif;font-size:10px;font-weight:700;line-height:1}
.dre-campaign-founder-rate-popover{position:absolute;top:calc(100% + 10px);left:0;width:min(330px,calc(100vw - 40px));padding:16px 17px;border:1px solid #d5e4cf;border-radius:10px;background:#fff;box-shadow:0 14px 38px rgba(0,0,0,.12);color:#555;text-align:left;white-space:normal;z-index:100}
.dre-campaign-founder-rate-popover::before{content:"";position:absolute;top:-6px;left:22px;width:10px;height:10px;background:#fff;border-left:1px solid #d5e4cf;border-top:1px solid #d5e4cf;transform:rotate(45deg)}
.dre-campaign-founder-rate-popover>strong{display:block;margin:0 0 7px;color:#111;font-size:14px;line-height:1.35;font-weight:800}
.dre-campaign-founder-rate-popover p{margin:0;color:#626262;font-size:13px;line-height:1.55}
.dre-campaign-founder-rate-popover a{display:inline-flex;margin-top:10px;color:#111!important;text-decoration:none!important;font-size:13px;font-weight:800}
.dre-campaign-founder-rate-popover a:hover{color:#47713f!important}
@media(max-width:640px){.dre-campaign-founder-rate-popover{left:0!important;right:auto!important}.dre-campaign-founder-rate-popover::before{left:22px!important;right:auto!important}}
.dre-upgrade-box #dre-upgrade-founder-rate-note .dre-campaign-founder-rate-popover{left:auto;right:0}
.dre-upgrade-box #dre-upgrade-founder-rate-note .dre-campaign-founder-rate-popover::before{left:auto;right:24px} .dre-upgrade-offer--bundle{
overflow:visible;
cursor:default;
}
.dre-upgrade-offer--bundle .dre-upgrade-offer-row{cursor:pointer}
.dre-upgrade-offer--bundle #dre-upgrade-founder-rate-note{margin:14px 0 0 34px}
.dre-upgrade-offer--bundle #dre-upgrade-founder-rate-note .dre-campaign-founder-rate{
display:inline-block;
width:auto;
max-width:100%;
}
.dre-upgrade-offer--bundle #dre-upgrade-founder-rate-note .dre-campaign-founder-rate-popover{
position:absolute;
top:auto;
bottom:calc(100% + 10px);
left:0;
right:auto;
width:min(330px,calc(100vw - 64px));
max-width:none;
margin:0;
box-sizing:border-box;
z-index:1000;
}
.dre-upgrade-offer--bundle #dre-upgrade-founder-rate-note .dre-campaign-founder-rate-popover::before{
top:auto;
bottom:-6px;
left:22px;
right:auto;
border-left:0;
border-top:0;
border-right:1px solid #d5e4cf;
border-bottom:1px solid #d5e4cf;
}
@media(max-width:600px){
.dre-upgrade-offer--bundle #dre-upgrade-founder-rate-note{margin-left:0}
} .dre-drawer-actions .dre-drawer-profile{white-space:nowrap}
@media(min-width:521px){.dre-drawer-actions{flex-wrap:nowrap}.dre-drawer-actions .dre-drawer-profile,.dre-drawer-actions .dre-drawer-review,.dre-drawer-actions .dre-drawer-visit{flex:1 0 auto;min-width:0}.dre-drawer-actions .dre-drawer-share{flex:0 0 40px}} .dre-drawer-actions .dre-drawer-profile,
.dre-drawer-actions .dre-drawer-review,
.dre-drawer-actions .dre-drawer-visit{background:#fff!important;color:#0a0a0a!important;border:1px solid #0a0a0a!important;white-space:nowrap}
.dre-drawer-actions .dre-drawer-profile:hover,
.dre-drawer-actions .dre-drawer-review:hover,
.dre-drawer-actions .dre-drawer-visit:hover,
.dre-drawer-actions .dre-drawer-profile:focus,
.dre-drawer-actions .dre-drawer-review:focus,
.dre-drawer-actions .dre-drawer-visit:focus{background:#f7f7f7!important;color:#0a0a0a!important;border-color:#0a0a0a!important;opacity:1} .dre-drawer .dre-drawer-actions [hidden]{display:none!important}
.dre-drawer .dre-drawer-actions{
display:flex!important;
flex-wrap:wrap!important;
align-items:stretch!important;
gap:7px!important;
}
.dre-drawer .dre-drawer-actions #dre-drawer-profile,
.dre-drawer .dre-drawer-actions #dre-drawer-review,
.dre-drawer .dre-drawer-actions #dre-drawer-visit,
.dre-drawer .dre-drawer-actions #dre-drawer-share,
.dre-drawer .dre-drawer-actions #dre-drawer-profile:link,
.dre-drawer .dre-drawer-actions #dre-drawer-review:link,
.dre-drawer .dre-drawer-actions #dre-drawer-visit:link,
.dre-drawer .dre-drawer-actions #dre-drawer-profile:visited,
.dre-drawer .dre-drawer-actions #dre-drawer-review:visited,
.dre-drawer .dre-drawer-actions #dre-drawer-visit:visited{
display:inline-flex;
align-items:center;
justify-content:center;
flex:0 0 auto!important;
min-width:0!important;
width:auto!important;
max-width:100%;
padding:10px 9px!important;
border:1px solid #0a0a0a!important;
border-radius:6px!important;
background:#fff!important;
color:#0a0a0a!important;
font-family:inherit!important;
font-size:11px!important;
font-weight:600!important;
line-height:1.2!important;
white-space:nowrap!important;
text-decoration:none!important;
text-decoration-line:none!important;
box-shadow:none!important;
opacity:1!important;
}
.dre-drawer .dre-drawer-actions #dre-drawer-profile:hover,
.dre-drawer .dre-drawer-actions #dre-drawer-review:hover,
.dre-drawer .dre-drawer-actions #dre-drawer-visit:hover,
.dre-drawer .dre-drawer-actions #dre-drawer-share:hover,
.dre-drawer .dre-drawer-actions #dre-drawer-profile:focus,
.dre-drawer .dre-drawer-actions #dre-drawer-review:focus,
.dre-drawer .dre-drawer-actions #dre-drawer-visit:focus,
.dre-drawer .dre-drawer-actions #dre-drawer-share:focus{
background:#f7f7f7!important;
color:#0a0a0a!important;
border-color:#0a0a0a!important;
text-decoration:none!important;
text-decoration-line:none!important;
box-shadow:none!important;
opacity:1!important;
}
.dre-drawer .dre-drawer-actions #dre-drawer-share{
flex:0 0 40px!important;
width:40px!important;
padding:10px 6px!important;
}
@media(max-width:520px){
.dre-drawer .dre-drawer-actions #dre-drawer-profile,
.dre-drawer .dre-drawer-actions #dre-drawer-review,
.dre-drawer .dre-drawer-actions #dre-drawer-visit{
flex:1 1 100%!important;
width:100%!important;
}
.dre-drawer .dre-drawer-actions #dre-drawer-share{
flex:0 0 40px!important;
width:40px!important;
}
}